关于圆角
- -webkit-border-radiusWebkit
- -moz-border-radiusFirefox
- border-radiis标准的
单独边的圆角
- Webkit
- -webkit-border-top-left-radius
- -webkit-border-top-right-radius
- -webkit-border-bottom-left-radius
- -webkit-border-bottom-right-radius
- Firefox
- -moz-border-radius-topleft
- -moz-border-radius-topright
- -moz-border-radius-bottomleft
- -moz-border-radius-bottomright
- 标准的
- border-top-left-radius
- border-top-right-radius
- border-bottom-left-radius
- border-bottom-right-radius
Box Resize
- resize both/vertical/horizontal
- min-height
- min-width
- overow: auto
RGBA
- background-color: rgba(R, G, B, A)
- color: rgba(R, G, B, A)
- 语法
- 255, 255, 255, 1
- Red, Green, Blue, Opacity
- (0-255, 0-255, 0-255, 0-1)
Box Shadow
- -webkit-box-shadowWebkit
- -moz-box-shadowFirefox
- box-shadow标准的
- 语法
- 5px 5px 5px #000000
- x-oset, y-oset, blur, color
Text Shadow
- text-shadow
- 语法
- 5px 5px 5px #000000
- x-oset, y-oset, blur, color
- filter:dropshadow()
- 语法
- (color=#000000, ox=5, oy=5)
- color, x-oset, y-oset
回顶部