CSS相关知识
知识点背景
css的定义方法:选择器 { 属性:值; 属性:值; 属性:值;}
1234567/* css注释 */div{ width:100px; height:100px; color:red }
样式引入
12345678910<!-- 外联方式 --><link rel="stylesheet" type="text/css" href="css/main.css"><!-- 嵌入式 --><style type="text/css"> div{ width:100px; height:100px; color:red }</style><!-- 内联式 --><div style="width:100px; height:100px; color:red ">......</div>
CSS常用文本样式1 ...