CSS排序
.class{
content;
display;
position;
top; right; bottom; left;
margin;
padding;
width; height;
line-height;
text-align;
}
选择器
元素选择
#home
HTML页面中中唯一id为home选择器.box
HTML页面中所有class为box元素div:nth-of-type(1)
其父级的第一个DIVdiv:nth-last-of-type(1)
其父级的最后一个DIV
‘div:nth-child(odd)’偶数
‘div:nth-child(even)’奇数
‘div:nth-child(3n+0)’3的倍数,从0开始
元素状态选择
:link
常用于a元素,没有被访问过的href值:visited
常用于a元素,已经被访问过的href值:hover
常用于a元素,鼠标停留的a或其他元素时:active
常用于a元素,a或其他元素鼠标按下时:focus
常用于input元素,选择时(输入时)input元素
元素内容选择
div:first-letter
DIV的第一个字div:first-line
DIV的首行内容
选择元素插入内容
div:before
DIV之前插入内容sdiv:after
DIV之后插入内容
其他
auto | default | none | context-menu | help | pointer | progress | wait | cell | crosshair | text | vertical-text | alias | copy | move | no-drop | not-allowed | e-resize | n-resize | ne-resize | nw-resize | s-resize | se-resize | sw-resize | w-resize | ew-resize | ns-resize | nesw-resize | nwse-resize | col-resize | row-resize | all-scroll | zoom-in | zoom-out | grab | grabbing ]
文字
文本线
text-decoration:none
无underline
下划线overline
上划线line-through
中划线(删除线)blink
闪烁(大部分浏览器不支持)
边框、轮廓线
border: #000 solid 1px;
outline: #000 solid 1px;
color:
style:
width:
文字换行
word-break: break-word;
word-wrap: break-word;
文字投影
盒子投影
box-show: 1px 2px 10px 1px #000;
X轴位置
Y轴位置
投影阈值
投影大小
input button ios 去除内置样式
-webkit-appearance: none;
多行溢出
1 | .oh1{text-overflow: ellipsis; overflow: hidden; white-space: nowrap;} |
第二参考
1 | overflow : hidden; |
css3 旋转动画
1 | li.loading i, div.loading i { position: relative; width: 24px; height: 24px; background: url(../images/loading.png); background-size: 24px auto; margin: 0 5px -5px 0; -webkit-animation: guangyun 1s infinite linear; animation: guangyun 1s infinite linear; } |
鼠标悬浮 图片框内放大
1 | .home .partner li a span{display: block; overflow: hidden;width: 164px;height: 92px;} |