个人html 的学习体会,带你了解html的学习内容
1.内嵌样式(内嵌样式)
示例:< body gt
2.内部风格
示例:< head gt
ltstyle type="text/css " >
正文{
背景色:# cccccc} lt/style gt; lt/head >
3.外部风格
示例:style.css
body { background-color:# cccccc;
}index.html
lthead gt
ltlink rel = " style sheet " type = " text/CSS " href = " style . CSS "/ gt;
lt/head gt;Css选择器
1.标签选择器(也称为元素选择器和类型选择器)
2.id和类别选择器
3.属性选择器[title]a { color:red;}(对于属性为title的A标记的所有元素,它会变成红色)
4.包括选择器。
5.伪类选择器
答:link { color:# ff 0000;Text-decoration: none} /*未访问的链接*/
答:已访问{ color:# 00ff 00;Text-decoration: none} /*访问过的链接*/
a:hover { color:# ff 00 ff;Text-decoration: underline} /*鼠标在链接上*/
a:主动{ color:# 0000 ff;文本装饰:下划线} /*激活链接*/
6.当务之急是:
内嵌样式表>内部样式表>外部样式表
7.选择器id的定义优先于类的定义
8.通配符*
9.浏览器优先!重要的注释语句。