自內向外 content,padding,border,margin. content表明 width; height.css
W3C默認: box-sizing: content-box . IE 默認: box-sizing: border-boxweb
行內元素能夠用 text-align: center; 塊級元素可使用 margin: 0 auto;flex
水平居中:3d
position:absolute +left:50%+ transform:translateX(-50%)orm
display:flex + justify-content: center事件
垂直居中:input
設置line-height 等於height, 不能寫100%it
position:absolute +top:50%+ transform:translateY(-50%)io
display:flex + align-items: centerevent
css禁用鼠標事件:pointer-events: none;
css禁止用戶選擇: user-select: none; (可加各個內核渲染器識別)
隔行樣式: nth-child(even/odd)
顏色漸變實現linear-gradient
讓overflow:scroll平滑滾動 :-webkit-overflow-scrolling: touch; // 移動端
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill { background-color: rgb(250, 255, 189); /* #FAFFBD; */ background-image: none; color: rgb(0, 0, 0); }
當檢測到某個DOM元素應用了某些CSS規則時就會自動開啓
.css {
-webkit-transform: translate3d(0,0,0);
-moz-transform: translate3d(0,0,0);
-ms-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}