Style覆盖优先级:
!important属性 > in-line style > id > class(后覆盖前)
CSS 中,可以使用 6 位十六进制数字表示颜色,每 2 位分别表示红色 (R)、绿色 (G) 和蓝色 (B) 成分。例如,#000000
是黑色,也可以表示为 rgb(0, 0, 0)
script元素:
元素选择器:$("button")
、class选择器:$(".btn")
、id选择器:$("#target1")
1 | <script> |
继承:
h3继承div,div继承body
.parent() .children()
jQuery 用CSS选择器来选取元素,target:nth-child(n)
CSS选择器允许你按照索引顺序(从1开始)选择目标元素的所有子元素。