Heim  >  Artikel  >  Web-Frontend  >  Div+CSS布局实例:用dl dt dd来制作列表_html/css_WEB-ITnose

Div+CSS布局实例:用dl dt dd来制作列表_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 12:30:161178Durchsuche

关于用DIV+CSS来制作列表的时候,大家最常用的是用ul和li来编写,但是这样用出现两个比较麻烦的地方:

  1、如果用UL还布局,右边一栏比较麻烦;
  2、文字外边的边框自适应比较麻烦;
  3、很可能要定死高度;

  所以,细细地看一看这个布局,想一想还是用DL.DT.DD作是合理的:

  1、布局合理一些;
  2、将来扩展很方便;
  3、CSS一定很少;

 




  试着写了写,看一看还行!在可控范围内!

  布局布分当然不用说了:


源代码如下:

用DL、DT和DD来制作列表

标题



  

    
·博客里的文章是我自己写的!

    
作者:张三

  

  

    
·博客里的文章是我自己写的!

    
作者:张三

  

  

    
·博客里的文章是我自己写的!

   
作者:张三

  
...........

 

 

CSS部分


*{ margin:0; padding:0;}
body{ font-size:12px; line-height:1.8; padding:10px;}
dl{clear:both; margin-bottom:5px;float:left;}
dt,dd{padding:2px 5px;float:left; border:1px solid #3366FF}
dd{ position:absolute; right:5px;}
h1{clear:both;font-size:14px;}
 

 

Tags:

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn