CSS
时间:2021-01-28 12:12:11
收藏:0
阅读:0
CSS
选择器
- 类选择器 .
- id选择器 #
- 标签选择器 某标签名
嵌入方式:
- 行内 style="color:blue"
- 内部<style type="text/css">
- 外部<link href="demo.css" rel="stylesheet">
高级选择器:
first-child会找E的第一位,如果不符合就不是
first-of-type会找列表中的符合的第一位
jQuery中的first只会找一个,整个body里面的第一个出现的
- 选择器的并集
h1,.special,#one{}
各种...font-size...div...display...a:hover...绝对定位...表单
CSS动画
评论(0)