0
我想集中添加到我的按鈕,這樣當有人點擊一個,它會改變顏色
我試圖.button:focus
但沒有任何反應的CSS按鈕:焦點
這裏是我的片段。
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
li {
float: left;
}
.button {
padding:0;
margin:0;
border:none;
font-size:14px;
background:#333;
color: grey;
height:50px;
width:134px;
font-variant:small-caps;
}
.button:hover {
padding:0;
margin:0;
border:none;
font-size:14px;
background:#333;
color: #FF0000;
height:50pxpx;
width:134px;
text-decoration:none;
font-variant:small-caps;
background-color: #111;
}
.button:focus {
background:blue;
}
<form action='' method="POST">
<ul>
<li><input type="submit" name="login" class="button" value="Login In"></li>
<li><input type="submit" name="prodcuts" class="button" value="Products"></li>
<li><input type="submit" name="question" class="button" value="Question"></li>
</ul>
</form>
你應該有效的HTML開始。你不能在'a'裏放置一個'input'。 – Quentin
**快速提示**:您可以使用[W3C標記驗證服務](https://validator.w3.org/)來檢查您的HTML是否有效。 –