右边有文字链接和图片链接。每个链接都有一个分隔符。我只希望文本链接显示分隔符而不是图像链接。
当前:文本>图像>图像>图像>
所需:文本>图像图像图像
谢谢
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title></title>
<style type="text/css">
#footer
{
height:30px;
line-height:30px;
border:solid 1px #E5E5E5;
}
#footer li
{
list-style-type:none;
float:left;
padding-left:10px;
}
#footer a
{
height:30px;
display:block;
background-image:url('http://s7.postimg.org/w0nt224pj/bc_separator.png');
background-repeat:no-repeat;
background-position:right;
padding-right: 15px;
text-decoration: none;
color:#0088CC;
}
ul
{
list-style-type:none;
padding:0px;
margin:0px;
}
</style>
<script></script>
</head>
<body background-color: #000000;>
<!-- Footer -->
<div style="width=980px;">
<ul id="footer">
<li id="text_separator"><a href="http://www.stackoverflow.org">Text</a></li>
<li><a href="http://www.stackoverflow.org/about"><img src="1.png" width="35" height="30" border=1></a></li>
<li><a href="http://www.stackoverflow.org/about"><img src="1.png" width="35" height="30" border=1></a></li>
<li><a href="http://www.stackoverflow.org/about"><img src="1.png" width="35" height="30" border=1></a></li>
<li><a href="http://www.stackoverflow.org/about"><img src="1.png" width="35" height="30" border=1></a></li>
</ul>
</div>
</body>
</html>