CSS常用属性

宽高:width:60px; height:20px;

Height:auto; 设置高度自动(默认)

height:100%; 占父级块的比例,要求父级块必须设置了固定值。

字体颜色:color:#999999;(灰)(颜色值:http://www.w3school.com.cn/cssref/css_colors.asp)

          常用提示性颜色:#FF9966

边框:border:1px solid #e4e4e3;


块元素水平对齐:float:right;(left)

块元素水平外边距:margin-right:40px;(left)

块元素上下外边距:margin-top:4px;(bottom)


块元素中文本水平对齐:text-align:center;(left/right)

块元素上下左右内边距:padding-top:4px;(bottom/left/right)

                      padding:15px 0 0 35px (top right botton left)

position:absolute;

生成绝对定位的元素,相对于 position:static (默认)定位以外的第一个父元素进行定位。元素的位置通过 "left", "top", "right" 以及 "bottom" 属性进行规定。例:style="position:absolute;left:50px;top:20px"


position:fixed;

生成绝对定位的元素,相对于浏览器窗口进行定位。元素的位置通过 "left", "top", "right" 以及 "bottom" 属性进行规定。





你可能感兴趣的:(css,常用属性)