安裝npm install -g less 轉換 文件+轉換后文件名字 (會在當前文件夾生成文件)lessc styles.less styles.css +壓縮lessc...

{box-sizing: border-box;}.container {margin: 0 auto;}@media (min-width: 768px) {.contai...
transition: all 1s ease(默認不用寫);1針對什么元素 2幾秒 3緩動狀態 linear 勻速ease-in 加速ease-out 減速cubic-be...
首頁全屏方法 下面還可以設置多頁body,html{height: 100%;} 如彈窗全屏方法 單頁.box{position: absolute;top: 0;left:...
1、relative --相對定位元素 相對自己的位置做定位 left-right-top-bottom2、absolute --絕對定位的元素 相對父容器內邊框做定位父元素...
1、BFC 會阻止垂直外邊框合并2、BFC 不會重疊浮動元素3、BFC 可以包含浮動 4、任何元素設置了float: left rightposition: absolut...
寫標準的代碼后 使用工具添加內容兼容npm install -g postcssnpm install -g postcss-clinpm install -g autopr...
清理浮動通用方法: .clearfix:after{content:"";display: block/table;clear:both;} .clearfix{*zoom:...