我的网站顶部的标题中有 3 个菜单项(目前它不存在,所以我无法提供链接 - 抱歉)。这 3 个“按钮”不是 CSS 按钮意义上的按钮——它们是呈现为图像的文本(不理想,我知道但它们看起来很漂亮,所以......)。
无论如何,每个图像都包含不同的版本:1 代表默认外观,1 代表鼠标悬停,另一个代表 onclick/active。到目前为止,我使用的 html 和 CSS 如下所示:
HTML
<li>
<a id="About" class="button" href="About Us.cshtml">About Us</a>
</li>
<li style="margin-left: 30px;">
<a id="Services" class="button" href="Services.cshtml">Services</a>
</li>
<li style="margin-left: 30px;">
<a id="Contact" class="button" href="Contact Us.cshtml">Contact Us</a>
</li>
CSS
#About {background: url(../Buttons/About.png) no-repeat 0 0; width: 87px;}
#Services {background: url(../Buttons/Services.png) no-repeat 0 0; width: 112px;}
#Contact {background: url(../Buttons/Contact.png) no-repeat 0 0; width: 117px;}
a.button {height: 20px; display: inline-block;}
a.button:hover {background-position: 0 -20px;}
a.button:active {background-position: 0 -40px;}
由于某种原因,“悬停”和“活动”状态无效。我注意到,如果我为每个按钮而不是 id 定义类,它工作正常 - 但这对我来说毫无意义。每个按钮都有自己的图像和宽度,因此是独一无二的(这就是为什么我给他们 id 而不是类)。
谁能解释我哪里出错了?我对这一切都很陌生,所以任何解释都需要外行。