我想增加li標籤之間的行分隔符高度。我試過使用height:100%
但它不工作。增加列表項目之間的分隔符長度
我遵循正確的方法。誰能幫忙?
CODE:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style type="text/css">
li {
display:inline;
list-style-type:none;
padding-left:1em;
margin-left:1em;
border-left:1px solid #ccc;
}
li:first-child {
border-left:none
}
</style>
</head>
<body>
<table cellspacing="0px;" style="border-top-width:0.1px;
border-top-style:solid;border-top-color:#ccc; border-bottom-color:#ccc;
border-bottom-style:solid; border-bottom-width:0.1px;">
<tr>
<td><ul>
<li><a href="#">Item one</a></li>
<li><a href="#">Item two</a></li>
<li><a href="#">Item three</a></li>
<li><a href="#">Item four</a></li>
</ul></td>
</tr>
</table>
</body>
THKS顯示:inline-block的工作,但你能解釋一下什麼是使用浮動:離開這裏 – coder25 2012-02-11 07:51:29