任何人都可以告诉我为什么我不能使用 html 下面定义的特异性list-style-type
从<ul>
下面删除。
<footer><!-- this is where the footer starts-->
<div class="container_12">
<div class="grid_2">
<ul>
<li>
<strong>
<a href="#">test</a>
</strong>
</li>
<li>
<a href="#">Home</a>
</li>
<li>
<a href="#">Why </a>
</li>
<li>
<a href="#">Get Started</a>
</li>
<li>
<a href="#">Customers</a>
</li>
<li>
<a href="#">Careers</a>
</li>
</ul>
footer ul {
list-style-type:none;
margin:0px;
padding: 0px;
}
我也试过footer div div ul {}
,但我似乎无法解决这个问题ul
。