例:
- 1<divstyledivstyle="padding:5px10px20px30px;
- background-color:Black;width:500px;height:500px;">
- 2
- 3<divstyledivstyle="width:200px;height:200px;
- background-color:White;">< span>div>
- 4
- 5< span>div>
- 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:下內邊距。
例:
- <divstyledivstyle="padding-left:50px;
- padding-top:50px;width:150px;height:150px;
- background-color:Black;">
- <divstyledivstyle="width:140px;height:140px;
- background-color:White;">
- < span>div>
- < span>div>
13、position:設置DIV的定位方式。
例:
代碼
- 1<divstyledivstyle="width:200px;height:200px;background-color:Black;">
- 2
- 3<divstyledivstyle="position:relative;top:10px;
- left:10px;width:140px;height:140px;
- 45background-color:White;">
- 6
- 7< span>div>
- 8
- 9<divstyledivstyle="position:absolute;top:60px;left:60px;
- background-color:Silver; width:100px;height:100px;">
- 12
- 13< span>div>
- 14
- 15<divstyledivstyle="position:fixed;top:210px;
- left:210px;background-color:Navy;
- 16
- 17width:100px;height:100px;">
- 18
- 19< span>div>
- 20
- 21< span>div>
- 22
- 23<divstyledivstyle="position:absolute;top:50px;left:50px;
- background-color:Blue;
- 25width:100px;height:100px;">
- 26
- 27< span>div>
- 28
- 29<divstyledivstyle="position:fixed;top:200px;left:200px;
- background-color:Navy;
- 30
- 31width:100px;height:100px;">
- 32
- 33< span>div>
- 34
- 35<divstyledivstyle="position:static;top:200px;left:100px;
- background-color:Yellow;
- 36
- 37width:100px;height:100px;">
- 38
- 39< span>div>
說明: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<divstyledivstyle="position:absolute;top:50px;left:50px;
- width:100px;height:100px;background-color:black;">
- 2
- 3< span>div>45<divstyledivstyle="position:absolute;top:60px;l
- eft:60px;width:100px;height:100px;
- 6
- 7background-color:Blue;z-index:1;">
- 8
- 9< span>div>
- 10
- 11<divstyledivstyle="position:absolute;top:70px;left:70px;
- background-color:Silver;width:100px;height:100px;">
- 12
- 13< span>div>
- 14
說明:上例效果中如果不設z-index屬性藍色DIV應該在中間,而現在的效果藍色在最上面了。還要說明的是用z-index屬性時,position必需要指定為absolute才行。