CSS:层叠样式表
1.内联样式
2.内部样式 用style在head处写
3.外部样式表 用link导入,或者用@import导入(只有火狐支持)
三种样式优先级:就近原则
属性选择器
伪类选择器
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>HTML基础</title> <style type="text/css"> a:link{color:red;} a:visited{color:green;} a:hover{color:blue;} a:active{color:yellow;} </style> </head> <body text="red" > <a href="http://www.baidu.com">百度</a> HTML基础HTML基础 </body> </html>
绝对定位:默认情况下,元素距离顶部,还有左边有8个像素的距离
这个我也学过,也不细说了