Div style常用属性
- 格式:docx
- 大小:39.51 KB
- 文档页数:13
一、常用属性:1、Height:设置DIV的高度。
2、Width:设置DIV的宽度。
例:<div style="width:200px;height:200px;background-color:Black;"></div>3、margin:用于设置DIV的外延边距,也就是到父容器的距离。
例:1 <div style="background-color:Black;width:500px;height:500px;">23 <div style="margin:5px 10px 20px 30px;width:200px; height:200px;backgro und-color:White;">45 </div>67 </div>说明:margin:后面跟有四个距离分别为到父容器的上-右-下-左边的距离;可以看例子中的白色DIV到黑色DIV的边距离效果。
还可以分别设置这四个边的距离,用到的属性如下:4、margin-left:到父容器左边框的距离。
5、margin-right:到父容器右边框的距离。
6、margin-top: 到父容器上边框的距离。
7、margin-bottom:到父容器下边框的距离。
例:1 <div style="width:500px;height:500px;background-color:Black;">23 <div style="margin-left:50px; margin-top:50px; width:200px; height:20 0px;45 background- color:White;">67 </div>89 </div>108、padding:用于设置DIV的内边距。
例:1 <div style="padding:5px 10px 20px 30px;background-color:Black;width:500px;h eight:500px;">23 <div style="width:200px; height:200px;background-color:White;"></div> 45 </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: 下内边距。
例:1 <div style="padding-left:50px;padding-top:50px;width:150px;height:150px;bac kground-color:Black;">23 <div style="width:140px; height:140px;background-color:White;">45 </div>67 </div>813、position:设置DIV的定位方式。
例:1 <div style="width:200px; height:200px;background-color:Black;">23 <div style="position:relative; top:10px;left:10px; width:140px; height: 140px;45 background-color:White;">67 </div>89 <div style="position:absolute; top:60px;left:60px; background-color:Si lver;1011 width:100px;height:100px;">1213 </div>1415 <div style="position:fixed; top:210px;left:210px; background-color:Nav y;1617 width:100px;height:100px;">1819 </div>2021 </div>2223 <div style="position:absolute; top:50px;left:50px; background-color:Blue; 2425 width:100px;height:100px;">2627 </div>2829 <div style="position:fixed; top:200px;left:200px; background-color:Navy; 3031 width:100px;height:100px;">3233 </div>3435 <div style="position:static; top:200px;left:100px; background-color:Yello w;3637 width:100px;height:100px;">3839 </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 <div style="position:absolute; top:50px;left:50px; width:100px; height:100 px;background-color:black;">23 </div>45 <div style="position:absolute; top:60px;left:60px; width:100px; height:100 px;67 background-color:Blue;z-index:1;">89 </div>1011 <div style="position:absolute; top:70px;left:70px; background-color:Silver; width:100px;height:100px;">1213 </div>14说明:上例效果中如果不设z-index属性蓝色DIV应该在中间,而现在的效果蓝色在最上面了。
还要说明的是用z-index属性时,position必需要指定为absolute才行。
19、font:指定DIV中文本的样式,其后可跟文本的多个样式。
例:1 <div style=" font:bold 14px 宋体;background-color:Yellow">2 明月几时有?把酒问青天。
不知天上宫阙、今夕是何年?我欲乘风归去,惟恐琼楼玉宇,高处不胜寒.起舞弄清影,何似在人间?转朱阁,低绮户,照无眠。
不应有恨、何事长向别时圆?人有悲欢离合,月有阴晴圆缺,此事古难全。
但愿人长久,千里共蝉娟3 </div>说明:font后可以跟文本样式的多个属性,如字体粗细、字体大小、何种字体等等。
还可以用以下几个属性分别加以设置:20、font-family:设置要用的字体名称;21、font-weight:指定文本的粗细,其值有bold bolder lighter等。
22、font-size:指定文本的大小。
23、font-style:指定文本样式,其值有italic normal oblique等。
24、color:指定文本颜色。
25、text-align:指定文本水平对齐方式,其值有center(居中) left right justify。
26、text-decorator:用于文本的修饰。
其值有none underline overline line-through 和blink的组合。
(在IE中无闪烁效果,FF中有效果。
期待高手指点,)27、text-indent:设置文本的缩进。
28、text-transform:设置文本的字母大小写。
其值有lowercase uppercase capitalize(首字母大写) none。
例:1 <div style="text-align:left; text-decoration:line-through blink; text-inde nt:30px;23 text-transform:capitalize;color:Blue; font:bold italic 14px 宋体; backgrou nd-color:Yellow">45明月几时有?把酒问青天。