其實我是網絡開發新手,這個問題可以很容易,但請幫助我。 可以幫助的夥計們。我試圖在按鈕上懸停時做出一些下拉菜單。 有什麼不對?使用CSS HOVER製作最簡單的下拉菜單
.clicker {
border: none;
height: 30px;
width: 120px;
background-color: orange;
color: blue;
cursor: pointer;
border-radius: 5px;
position: absolute;
}
.dropdownKeeper {
display: none;
position: relative;
top: 15px;
left: 150px;
}
button:hover .dropdownKeeper {
display: block;
}
<!DOCTYPE html>
<html>
<head>
<title>a</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<button class="clicker">Click Me</button>
<div class="dropdownKeeper">
<a href="#">ajsghj</a>
<a href="#">ajsghj</a>
<a href="#">ajsghj</a>
</div>
</body>
</html>
試試我的代碼。可能這會幫助你;-) –