div经常使用属性.docx
- 文档编号:25414177
- 上传时间:2023-06-08
- 格式:DOCX
- 页数:25
- 大小:24.30KB
div经常使用属性.docx
《div经常使用属性.docx》由会员分享,可在线阅读,更多相关《div经常使用属性.docx(25页珍藏版)》请在冰豆网上搜索。
div经常使用属性
一、经常使用属性:
一、Height:
设置DIV的高度。
二、Width:
设置DIV的宽度。
例:
200px;height: 200px;background-color: Black;">
3、margin:
用于设置DIV的外延边距,也确实是到父容器的距离。
例:
1 Black;width: 500px;height: 500px;"> 2 3 5px10px20px30px;width: 200px;height: 200px;background-color: White;"> 4 5
6
7
说明:
margin:
后面跟有四个距离别离为到父容器的上-右-下-左侧的距离;能够看例子中的白色DIV到黑色DIV的边距离成效。
还能够别离设置这四个边的距离,用到的属性如下:
4、margin-left:
到父容器左侧框的距离。
五、margin-right:
到父容器右边框的距离。
六、margin-top:
到父容器上边框的距离。
7、margin-bottom:
到父容器下边框的距离。
例:
代码
1 500px;height: 500px;background-color: Black;"> 2 3 50px;margin-top: 50px;width: 200px;height: 200px; 4 5background-color: White;"> 6 7
8
9