div を使用して本当に単純なボタンを作成しようとしています。マウスカーソルがボタンの上に移動すると、テキストが黒くなり、背景色が白くなることを除いて、すべて問題ありません...しかし、現在、マウスカーソルをテキストの上に置いて、黒くなるのを確認する必要があります。
これが私のCSSコードです:
.pledges_boutons {
width: 157px;
color: #fff;
font-family: "Arial Black", Gadget, sans-serif;
font-size: 11px;
height: 18px;
text-align: center;
margin-right: 10px;
margin-left: 10px;
margin-top: 5px;
margin-bottom: 5px;
text-decoration: none;
display: block;
background-color: #868686;
}
とホバー:
.pledges_boutons:hover {
color: #000;
cursor: pointer;
background-color: #fff;
}
HTML:
<div class="pledges_boutons">
<a href="http://www.google.com">Click here</a>
</div>
ここに私のフィドルがあります
ありがとうございました!