图像的比例是否与问题有关?
#menu {
background: black;
width: 100%;
height: 45px;
}
#menu ul {
text-decoration: none;
list-style-type: none;
}
#menu li {
text-decoration: none;
display: inline;
font-size: 30px;
padding-left: 30px;
}
#menu a:hover {
background-image: url(images/hover.png);
}
#menu a {
text-decoration: none;
color: white;
margin: auto
background-repeat: bo-repeat;
background-position: top center;
background-size: contain;
}
在悬停时,它会多次重复图像。图像为 2000 x 500 像素。我怎样才能使这个图像显示在中间的单词后面而不重复。谢谢
这是图像悬停 链接
html代码
<div id="menu">
<ul>
<li><a href="index.html"> Home</a></li>
<li> <a href="#"> lalal</a></li>
</ul>
</div>