+ -
当前位置:首页 → 问答吧 → dl,dt,dd组成的table.

dl,dt,dd组成的table.

时间:2008-07-04

来源:互联网

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "[url=http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd]http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd[/url]">
  2. <html xmlns="[url=http://www.w3.org/1999/xhtml]http://www.w3.org/1999/xhtml[/url]">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
  5. <title>dl,dt,dd组成的table</title>
  6. <style type="text/css">
  7. *{padding:0; margin:0}
  8. body{font-size:12px; font-family:arial, sans-serif; text-align:center}
  9. #wrap{margin:20px auto; width:500px; text-align:left}
  10. dl{padding:1px ; background:#039}
  11. dt,dd{display:block}
  12. dt{background:#039; color:#fff; padding:3px}
  13. dd{background:#fff; margin-top:1px}
  14. dd:hover{background:#ffc}
  15. span{width:13%; border-right:1px solid #000; display:block; float:left; text-align:right; padding-right:10px; margin-right:5px}
  16. dd,span{height:22px; line-height:22px}
  17. </style>
  18. </head>
  19. <body>
  20. <div id="wrap">
  21. <dl>
  22. <dt>表格标题</dt>
  23. <dd><span>序号:</span>first</dd>
  24. <dd><span>标题:</span>css templet</dd>
  25. <dd><span>内容:</span>this is the content</dd>
  26. <dd><span>时间:</span>2008-6-19</dd>
  27. </dl>
  28. </div>
  29. </body>
  30. </html>
复制代码

仅供参考!

作者: calent   发布时间: 2008-07-04

支持一下...

作者: 西门轩辕   发布时间: 2008-07-06

可能结构较为复杂的table就不要弄了吧。

作者: faintok   发布时间: 2008-09-28