css3

cursor:pointer 鼠标样式(手指)

:nth-child(n) 选择器匹配属于其父元素的第 N 个子元素
:first-child选择属于其父元素的首个子元素
;last-child 选中最后元素

overflow: hidden;
text-overflow: ellipsis; 

white-space: nowrap; 超出文本显示省略号 不显示换行

 

table-layout: fixed;设置表格布局
 

margin: auto;
top: 0px;
left: 0px;
bottom: 0px;        绝对定位居中
right: 0px;
position: absolute;

 

linear-gradient(线性渐变)和radial-gradient(径向渐变)

图片居中

clear:both;margin:auto;display:block;

你可能感兴趣的:(css3)