DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> CSS入門知識 >> CSS詳解 >> DIV style常用屬性(2)
DIV style常用屬性(2)
編輯:CSS詳解     
8、padding:用於設置DIV的內邊距。

例:

  1. 1<divstyledivstyle="padding:5px10px20px30px;
  2. background-color:Black;width:500px;height:500px;">
  3. 2
  4. 3<divstyledivstyle="width:200px;height:200px;
  5. background-color:White;">div>
  6. 4
  7. 5div>
  8. 6

說明:padding的格式和margin的格式一樣,可以對照學習。可以看黑色DIV與白色DIV的邊距來體會此屬性的效果。這是還需要注意的是padding設置的距離不包括在本身的width和height內(在IE7和FF中),比如一個DIV的width設置了100px,而padding-left設置了50px,那麼這個DIV在頁面上顯示的將是150px寬。也可以用以下四個屬性來分別設置DIV的內邊距:

9、padding-left:左內邊距。

10、padding-right:右內邊距。

11、padding-top;上內邊距。

12、padding-bottom:下內邊距。

例:

  1. <divstyledivstyle="padding-left:50px;
  2. padding-top:50px;width:150px;height:150px;
  3. background-color:Black;">
  4. <divstyledivstyle="width:140px;height:140px;
  5. background-color:White;">
  6. div>
  7. div>

13、position:設置DIV的定位方式。

例:

代碼

  1. 1<divstyledivstyle="width:200px;height:200px;background-color:Black;">
  2. 2
  3. 3<divstyledivstyle="position:relative;top:10px;
  4. left:10px;width:140px;height:140px;
  5. 45background-color:White;">
  6. 6
  7. 7div>
  8. 8
  9. 9<divstyledivstyle="position:absolute;top:60px;left:60px;
  10. background-color:Silver; width:100px;height:100px;">
  11. 12
  12. 13div>
  13. 14
  14. 15<divstyledivstyle="position:fixed;top:210px;
  15. left:210px;background-color:Navy;
  16. 16
  17. 17width:100px;height:100px;">
  18. 18
  19. 19div>
  20. 20
  21. 21div>
  22. 22
  23. 23<divstyledivstyle="position:absolute;top:50px;left:50px;
  24. background-color:Blue;
  25. 25width:100px;height:100px;">
  26. 26
  27. 27div>
  28. 28
  29. 29<divstyledivstyle="position:fixed;top:200px;left:200px;
  30. background-color:Navy;
  31. 30
  32. 31width:100px;height:100px;">
  33. 32
  34. 33div>
  35. 34
  36. 35<divstyledivstyle="position:static;top:200px;left:100px;
  37. background-color:Yellow;
  38. 36
  39. 37width:100px;height:100px;">
  40. 38
  41. 39div>

說明:position的屬性中有static、fixed、relative、absolute四個屬性。常用relative和absolute。若指定為static時,DIV遵循Html規則;若指定為relative時,可以用top、left、right、bottom來設置DIV在頁面中的偏移,但是此時不可使用層;若指定為absolute時,可以用top、left、right、bottom對DIV進行絕對定位;若指定為fixed時,在IE7與FF中DIV的位置相對於屏屏固定不變,IE6中沒有效果(期待高手指點原因);

14、left:設置對象相對於文檔層次中最近一個定位對象的左邊界的位置。

15、top:設置對象相對於文檔層次中最近一個定位對象的上邊界的位置。

16、right:設置對象相對於文檔層次中最近一個定位對象的右邊界的位置。

17、bottom:設置對象相對於文檔層次中最近一個定位對象的下邊界的位置。

18、z-index:設置DIV的層疊順序。

例:

代碼

  1. 1<divstyledivstyle="position:absolute;top:50px;left:50px;
  2. width:100px;height:100px;background-color:black;">
  3. 2
  4. 3div>45<divstyledivstyle="position:absolute;top:60px;l
  5. eft:60px;width:100px;height:100px;
  6. 6
  7. 7background-color:Blue;z-index:1;">
  8. 8
  9. 9div>
  10. 10
  11. 11<divstyledivstyle="position:absolute;top:70px;left:70px;
  12. background-color:Silver;width:100px;height:100px;">
  13. 12
  14. 13div>
  15. 14

說明:上例效果中如果不設z-index屬性藍色DIV應該在中間,而現在的效果藍色在最上面了。還要說明的是用z-index屬性時,position必需要指定為absolute才行。

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