我在容器中有一个带有按钮的 navcontainer。我只需要为其中一个按钮制作一个下拉列表。这将如何通过 CSS/HTML 实现。这是我的代码:
HTML:
<div id="navcontainer">
<a href="/home.html" class="button" style="width: 115px">About Us</a>
<a href="/quote.html" class="button" style="width: 170px">Request a Quote</a>
<a href="/affiliates.html" class="button" style="width: 115px">Affiliates</a>
<a href="/pricing.html" class="button" style="width: 170px">Pricing & Plans</a>
<a href="/addservices.html" class="button" style="width: 190px">Additional Services</a>
<a href="/service.html" class="button" style="width: 165px">Service Details</a>
<a href="/watering.html" class="button" style="width: 108px">Watering</a>
</div>
CSS:
#navcontainer {
float: right;
width: 1040px;
height: 45px;
text-align: center;
line-height: 45px;
color: #fff;
margin-bottom: 6px;
}
.button {
text-align: center;
background: #226426;
color: #fff;
width: 100px;
height: 45px;
float: left;
text-decoration: none;
font-family: Arial, sans-serif;
font-size: 15px;
font-weight: bold;
border-right: solid 1px #91b293;
border-top: solid 1px #91b293;
border-bottom: solid 1px #91b293;
}
我需要把它变成一个 ul 还是我可以保持原样,然后在服务按钮中添加一个下拉列表?谢谢你的帮助。