我试图让我的标签列表显示在行中,但我似乎无法做到。
这是我的 CSS 代码:
.tags{
list-style-type: none;
}
.tags li:first-child:before {
content: "Tags:\0000a0";
font-style: normal;
font-weight: bold;
letter-spacing: .3em;
text-transform: uppercase;
font-size: 10px;
color: #7d7d7d;
}
.tags ul li a {
border-bottom: none;
background: rgba(239, 177, 113, .4);
color: #000000;
padding: 2px 6px;
margin: 0 4px 4px 0;
display: inline-block;
*zoom: 1;
}
.tags ul li a:hover {
background: rgba(239, 177, 113, .8);
}
HTML:
<ul class="tags">
<li>Themes</li>
<li>Code</li>
<li>Tumblr</li>
</ul>
我还制作了这个 jsfiddle: http: //jsfiddle.net/5Sqkk/(rgba 代码似乎在 jsfiddle 中不起作用——尽管它在我的实际站点上运行良好)。
提前感谢您提供的任何帮助!