-
visibility:hidden;与display:none;的区别
- visibility:hidden;仅隐藏块元素内容
- display:none;完全隐藏块元素(包括占位)
- 分支主题 3
-
1.学习lynda Learning css2视频
- @import
-
incorporating css in html
- grouping selectors
-
types of elements
-
两种元素:块元素和行内元素
- 块元素和行内元素的区别
- 在页面中流方式不同
-
css 指定元素模式的方法:display
- block
- inline
- none
- list-item
- ...
-
<div>和<span>
- <div>是块元素\<span>是行内元素
-
color
- foreground: color
- background :background-color
-
layout
-
float
- float和流的区别?
-
box model
-
border
- border-width
- border-top-width
- ...
- borer-color
- border-style
-
margin
- margin:<top> <right> <bottom> <left>
- padding
-
element position
- z-index:元素层级优先级
-
clear
- 和float属性配合使用
- Layer presentation
-
overflow
- visible
- hidden
- scroll
- auto
-
visibility
- hidden
- visible
- collapse
- 伪类:first-line
-
background
- background-image:url("<localtion>");
- background-repeat
-
background-attachment
- scroll
- fixed
- inherit
- background-position
-
typography
- font-family
-
font-style
- oblique
- italic
- normal
- font-weight
- font-size
- line-height
-
font-variant
- narmal
- small-caps
- 分支主题 2