DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> CSS入門知識 >> CSS詳解 >> DIV+CSS兼容IE6、IE7、Firefox方法探究(3)
DIV+CSS兼容IE6、IE7、Firefox方法探究(3)
編輯:CSS詳解     

◆DIV+CSS三行三列布局(兼容各種浏覽器)

  1. <!DOCTYPEHTMLPUBLIC"-//W3C//DTDHtml4.01//EN"
  2. "http://www.w3.org/TR/Html4/strict.dtd">
  3. <Html>
  4. <HEAD>
  5. <TITLE>DIV布局測試</TITLE>
  6. <styletypestyletype="text/CSS">
  7. DIV
  8. {
  9. height:150px;
  10. }
  11. DIV.left
  12. {
  13. width:20%;
  14. float:left;
  15. clear:right;
  16. background-color:#eeeeee;
  17. }
  18. DIV.center
  19. {
  20. width:50%;
  21. float:left;
  22. clear:right;
  23. background-color:#CCCCCC;
  24. }
  25. DIV.right
  26. {
  27. width:30%;
  28. float:left;
  29. clear:right;
  30. background-color:#808080;
  31. }
  32. DIV.both
  33. {
  34. width:100%;
  35. clear:both;
  36. background-color:#696969;
  37. }
  38. </style>
  39. </HEAD>
  40. <BODY>
  41. <DIVclassDIVclass="left">左側</DIV>
  42. <DIVclassDIVclass="center">中側</DIV>
  43. <DIVclassDIVclass="right">右側</DIV>
  44. <DIVclassDIVclass="both">全行</DIV>
  45. <DIVclassDIVclass="left">左側</DIV>
  46. <DIVclassDIVclass="center">中側</DIV>
  47. <DIVclassDIVclass="right">右側</DIV>
  48. </BODY>
  49. </Html>

 

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved