一. display:[inline/block/inline-block/none]
Inline Elements:
- respect left & right margins and padding, but not top & bottom
- cannot have a width and height set
- allow other elements to sit to their left and right
Block elements:
- respect all of those
- force a line break after the block element
Inline-block elements:
- allow other elements to sit to their left and right
- respect top & bottom margins and padding
- respect height and width
none
- display:none 不占据任何空间
- visibility:hidden 占据普通流内的空间
二、Cookies
- BOM提供了储存和提取Cookie的接口: 利用document.cookie对象来存取cookie,但是原生的JavaScript不提供具体操作Cookie的方法。
三、link与@import
- 页面加载时,同时加载link; 而@import应用的css等页面加载完毕后加载
- link的权重比@import大
四、盒子模型
- 分为IE盒子模型和标准w3c盒子模型;IE的content部分包含border和padding;
- 标准的盒子部分分为4部分: content、padding、margin、border
五、选择器、优先级算法、CSS3新增伪类
- id selector(#id)
- class selector(.class)
- tags selector(div, h1, p)
- siblings selector(h1 + p)
- 子选择器(ul>li)
- 后代选择器(li a)
- 通配符选择器(*)
- 属性选择器(a[hel = "external"])
- 伪类选择器(a:hover, li:nth-child)
Inherit able: font-size; font-family; color; text-indent;
Inherit unable: border; padding; margin; width; height;
优先级就近原则,同权重情况样式定义最近者为准
载入样式以最后载入的定位为准
优先级:
!important > id > class > tag
important > 内联 > id
CSS3伪类:
- p:first-of-type 选择属于其父元素的首个 p 元素的每个 p 元素
- p:last-of-type 选择属于其父元素的最后 p 元素的每个 p 元素
- p:only-of-type 选择属于其父元素唯一的 p 元素的每个 p 元素
- p:only-child 选择属于其父元素的唯一子元素的每个 p 元素
- p:nth-child(2) 选择属于其父元素的第二个子元素的每个 p 元素
- :enabled :disabled 控制表单控件的禁用状态。
- :checked 单选框或复选框被选中
position:[absolute, relative, fiexed]
- absolute 相对于父元素定位(除static定位外)
- fixed 固定定位,相对于浏览器窗口
- relative 相对自身在普通流中的位置定位
- static 默认值,普通流中定位
- inherit 继承父元素的属性