css3技术

DivCSS布局实例:很实用的图文混排CSS列表-富有语义_div+css布局教程(2)

字号+ 作者:H5之家 来源:H5之家 2015-09-20 10:41 我要评论( )

* { margin:0; padding:0; font-size:13px; color:#000; list-style:none;} a { color:#03c; text-decoration:none;} a:hover { text-decoration:underline;} #list__com { width:418px; margin:30px auto; border:

* { margin:0; padding:0; font-size:13px; color:#000; list-style:none;}
a { color:#03c; text-decoration:none;}
a:hover { text-decoration:underline;}
#list__com { width:418px; margin:30px auto; border:1px solid #999;}


  整体布局声明:
  设置整个层的样式,宽度为418px,上下外边距为30px,左右为自动实现水平居中对齐。边框设置为1px的灰色实线。

div css xhtml xml Example Source Code

Example Source Code []

.list_title { width:418px; height:32px; border-bottom:1px solid #999; background:#f2f9fd; overflow:hidden;}
.list_title h3 { float:left; width:160px; line-height:32px; text-indent:15px;}
.list_title h3 a { color:#c00;}
.list_title h3 a:hover { color:#03c;}
.list_title ul { float:right; width:230px;}
.list_title ul li { float:left; line-height:32px; padding:0 5px;}
.list_title ul li a { font-size:12px; color:#333;}


  标题区域list_title层的CSS样式定义:
  设置list_title层宽度与高度分别是:418px、32px;下边框为1px的灰色实线;设置背景色及溢出隐藏。
  栏目名称h3元素向左浮动;宽度160px;行距32px实现文字垂直居中对齐;文本缩进为15px。紧接着设置栏目名称h3链接的样式。
  栏目导航ul列表的CSS样式,向右浮动;宽度为230px;设置列表项li向左浮动;行距为32px;上下内边距为0,左右内边距为5px;紧接着设置链接文字大小与颜色。

div css xhtml xml Example Source Code

Example Source Code []

.list_unit { float:left; width:388px; margin-left:15px; padding:15px 0 8px 0; border-bottom:1px dotted #9AC4E9;}
.list_unit { display:inline;}


  内容层(list_unit)整体样式定义:
  向左浮动;宽度为388px,左外边距为15px,上内边距15px、下内边距8px;设置下边框为浅蓝色的虚线。
  设置为内联是避免IE的双边距BUG。

div css xhtml xml Example Source Code

Example Source Code []

.list_unit p { float:left; width:164px;}
.list_unit p a { display:block; border:1px solid #03c;}
.list_unit p a:hover { border:1px dashed #00f;}
.list_unit p a img { width:160px; height:120px; margin:1px; border:0;}
.list_unit span { display:block;}
.list_unit span a { display:block; width:164px; height:22px; border:0; line-height:22px; text-align:center;}
.list_unit span a:hover { border:0; color:#c00;}


  内容层(list_unit)内图片链接样式定义:
  整个段落p,向左浮动,宽度为164px。
  设置链接为块元素;设置边框为1px蓝色实线。
  链接悬念状态下,边框变为1px深蓝色虚线。
  链接元素内的图片定义,宽度与高度分别是:160px、120px;外边距为1px;边框为0(消除图片链接浏览器的默认边框)。
  设置链接文字样式,由于上面的设置是整体的,因而在下面的内容中,注重将上面的一些内容层叠掉。
  将span转换为块元素。span内的链接同样转换为块元素,设置宽度与高度分别是164px、22px;设置边框为0(层叠先前的设置);行距设置为22px;文字水平居中对齐。
  span内的链接文字悬停状态下,设置边框为0;颜色设置为#c00;显示下划线。

div css xhtml xml Example Source Code

Example Source Code []

.list_unit ul { float:right; width:216px; margin-top:-5px;}
.list_unit ul li { float:left; width:216px; line-height:22px; color:#039; white-space:nowrap; text-overflow:ellipsis; overflow:hidden;}


  内容层(list_unit)内文章列表样式定义:
  整个列表ul向右浮动;宽度为216px;上外边距为-5px。
  列表项li的CSS样式设置,向左浮动,宽度为216px;行距为22px;颜色为#039;后面的三个属性是实现“截字”效果,网站上有具体的介绍。(请注重此效果在FF下无效)

div css xhtml xml Example Source Code

Example Source Code []

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
网友点评