常用的新闻列表代码ul/li的应用例子

发布时间:2019-10-20编辑:脚本学堂
新闻列表在以咨询或非咨询为主的门户网站上起到很重要的作用,对它的布局大家也十分重视,下文是常用的新闻列表应用案例,有兴趣的朋友参考一下,一定能给您带来帮助的。

 

复制代码 代码示例:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
<!--
#items {
width:900px;
height:auto;
margin:0 auto;
padding:5px 0;
clear:both;
}
#items ul, #items li {
list-style:none;
}
#items li {
width:800px;
height: 28px;
text-align: right;
background-image: url(../images/icon_text.gif);
background-repeat: no-repeat;
background-position: 50px center;
padding-left: 0px;
line-height:28px;
color:#CCC;
border-bottom:dashed 1px #CCC;
}
#items li a {
float:left;
text-align:left;
line-height:28px;
color:#666;
text-decoration:none;
}
#items li a:hover {
color:#F00;
}
-->
</style>
</head>
<body>
<div id="items">
<ul>
<li><a href="#">新闻标题新闻标题新闻标题</a>2010-04-03</li>
<li><a href="#">新闻标题新闻标题新闻标题</a>2010-04-03</li>
<li><a href="#">新闻标题新闻标题新闻标题</a>2010-04-03</li>
<li><a href="#">新闻标题新闻标题新闻标题</a>2010-04-03</li>
<li><a href="#">新闻标题新闻标题新闻标题</a>2010-04-03</li>
</ul>
</div>
</body>
</html>