JavaWeb学习之CSS

CSS定义:选择符{规则} h{color:biue;}
CSS属性:font-family定义字体类型;font-size定义字体大小;font-weight定义字体粗细;font-variant字体变形;font-style字体效果;color定义前景色;background-color定义背景色;background-image定义背景图像URL;
CSS提供光标属性设置,共16种光标
CSS选择符有三种:HTML标记,class,id;(h3{color:red} <h3>...</h3>  .am{color:red} <h3 class=am>...</h3> )
嵌入外部样式表<style type="text/css"></style>;链接外部样式表<link type="text/css" rel=stylesheet href="外部样式表"

猜你喜欢

转载自blog.csdn.net/object__/article/details/80290843