CSS笔记:
1、CSS:层叠样式表,用来美化页面,可以对页面元素进行更精细的设置,样式主要描述元素的字体颜色,背景颜色,边框等。
2、行内样式表:style的值为键值对 style="color:red;font-size:50px;"
<div
style="color:red;font-size:50px;font-family:微软雅黑;background-color:blue;width:300px;border-style:dashed;border-color:red;border-width:10px;cursor:pointer;"></div>
其中边框如果四条边框都一样也可以直接写为borde:10px dashed red;
如果分别设置的话则 border-top:10px dashed red;border-right:10px solid red;border-left:10px dotted red;border-bottom:10px double red;
cursor:pointer;鼠标移入div会光标变为小手
overflow:auto 当内容溢出的时候自动有滚动条,scroll一直有滚动条,visible正常显示,hiden隐藏
background-image:url(背景图片地址) 加背景图
background-repeat:repeat-x 背景图x轴平铺,repeat-y 背景图y轴平铺 repeat 背景图xy轴平铺
原文:http://www.cnblogs.com/awaTangjay/p/6483781.html