div+css实现简洁、清晰的新闻列表样式(浮动使日期靠右)

作者:我就是个世界 发表于:2009-03-31
不需要table,用div+css实现简洁、清晰的新闻列表样式,,适用于动态程序模版生成。

效果:[url=http://www.husw.net/blog/attachment/200903/1238463255_18184c7c.html]no-table-news-list-style.html[/url]

[color=#B22222]html代码(注意:span一定要放在前面,反之会产生换行,span的右浮动会使它居右.)[/color]

[code]
<div id="news">
<ul class="list">
<li><span>2005年5月30日 </span><a href="#">新闻标题01</a></li>
<li><span>2005年5月30日 </span><a href="#">新闻标题02</a></li>
<li><span>2005年5月30日 </span><a href="#">新闻标题03</a></li>
<li><span>2005年5月30日 </span><a href="#">新闻标题04</a></li>
</ul>
</div>[/code]

[b]css代码:[/b][separator]

[code]body{
font: 12px/18 Verdana;
}
#news{
width: 50%;
margin: 5px auto;
}
.list{
margin: 0px 10px 20px;
text-align: left;
}

.list ul{
list-style: none;
margin: 0px;
padding: 0px;
}

.list li{
/*列表底部的虚线*/
list-style: none;
width: 100%;
border-bottom: 1px dotted #CCC;
line-height: 21px;
height: 21px;  
}

.list li a{
color: #777;
display: block;
padding: 0px 0px 0px 15px;
background: url(http://husw.net/blog/template/linstyle.1/images/bullet-orange.gif) no-repeat 0 2px;
/*列表左边的箭头图片*/
}

.list li span{
float: right;/*使span元素浮动到右面*/
text-align: right;/*日期右对齐*/
}

.list li a:hover{
color: #369;
background: url(http://husw.net/blog/template/linstyle.1/images/Square_green.gif) no-repeat 4px 8px;
}[/code]

浮动在布局的时候需要清除父容器浮动。

[b]样例下载:[/b]
[url][attach]219[/attach][/url]

分享:

扫一扫在手机阅读、分享本文

请发表您的评论