4
我有一個「ul」列表,我希望在「li」上有一個邊框頂部,但我不希望頂部邊框和文本之間的默認距離,我需要更多的距離。如何增加上邊距? (ul li)
不幸的是,我不明白的方式來完成這項工作,邊框間距應該工作,但它沒有,只是afect左右..
border-spacing: 10px;
#links {
\t font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
\t font-size: 14px;
\t color: #98af85;
\t margin-left:-38px;
\t padding-top:4px;
}
#links ul{
\t list-style: none; \t
}
#links ul li {
\t padding: 0px 47px 0px 0px;
\t white-space:nowrap;
\t display: inline-table;
\t border-spacing: 10px;
}
#links ul li a {
\t font-size: 14px;
\t color: #98af85;
\t text-decoration: none;
}
#links ul li a:hover {
\t color: #3b8686;
\t cursor: pointer;
\t text-decoration: none;
\t border-top: 9px solid #b8dc7c;
}
<div id="links">
<ul>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
</ul>
</div>
好的電話!我想我嘗試了保證金頂部,那是爲什麼沒有工作。謝謝隊友:) – SGomes 2014-09-27 12:53:44
不客氣。不要忘記接受答案:D – 2014-09-27 12:54:22
當然是的,需要等待幾分鐘之後:) – SGomes 2014-09-27 12:58:53