我正在我的网页上创建一些链接,并且我想要产生效果,例如背景的变化或文本的大小似乎长大了,每当我将鼠标悬停在这些链接上时。链接显示为blocks
.
html部分
<div>
<a class="leftimagelinks" href="#">Submit a paper</a><br>
<a class="leftimagelinks" href="#">Get the brochure</a><br>
<a class="leftimagelinks" href="#">Housing and travel</a>
</div>
CSS部分
.leftimagelinks {
margin: auto;
display: block;
width: 190px;
height: 25px;
border-radius: 8px;
text-align: center;
padding: 4px;
color: yellow;
background-color: black;
background-color: #32CD32;
}
.leftimagelinks a:hover{
background-color: red;
}
但即使在上述内容之后,每当我将鼠标悬停在链接上时,也没有任何变化。这里有什么错误?