1.視窗寬度css
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"/>
提示:剛剛那個是帶所有參數的,通常經常使用的,有 user-scalable=no 就不用使用 minimum-scale=1.0 和 maximum-scale=1.0 來強制禁止縮放了。html
<meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no"/>前端
2.自動識別格式web
<meta name="format-detection" content="telephone=no"/>
content 裏面的參數:telephone=no 是禁止瀏覽器自動識別手機號碼,email=no 是禁止瀏覽器自動識別Email。瀏覽器
3.完整模板微信
<meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no"/> <meta name="format-detection" content="telephone=no"/> <meta name="format-detection" content="email=no"/>
body { font-family: "Helvetica Neue", Helvetica, STHeiTi, sans-serif; /*使用無襯線字體*/ } a, img { -webkit-touch-callout: none; /*禁止長按連接與圖片彈出菜單*/ } html, body { -webkit-user-select: none; /*禁止選中文本*/ user-select: none; } button,input,optgroup,select,textarea { -webkit-appearance:none; /*去掉webkit默認的表單樣式*/ } a,button,input,optgroup,select,textarea { -webkit-tap-highlight-color:rgba(0,0,0,0); /*去掉a、input和button點擊時的藍色外邊框和灰色半透明背景*/ } input::-webkit-input-placeholder { color:#ccc; /*修改webkit中input的planceholder樣式*/ } input:focus::-webkit-input-placeholder { color:#f00; /*修改webkit中focus狀態下input的planceholder樣式*/:#f00; /*修改webkit中focus狀態下input的planceholder樣式*/ }} body {{ -webkit-text-size-adjust: 100%!important; /*禁止IOS調整字體大小*/-webkit-text-size-adjust: 100%!important; /*禁止IOS調整字體大小*/ }} input::-webkit-input-speech-button {::-webkit-input-speech-button { display: none; /*隱藏Android的語音輸入按鈕*/: none; /*隱藏Android的語音輸入按鈕*/ }}
這裏假設flex容器爲 .box ,子元素爲 .item 。app
1.定義容器爲flex佈局ide
.box{ display: -webkit-flex; /*webkit*/ display: flex; } /*行內flex*/ .box{ display: -webkit-inline-flex; /*webkit*/ display:inline-flex; }
2.容器樣式佈局
.box{ flex-direction: row | row-reverse | column | column-reverse; /*主軸方向:左到右(默認) | 右到左 | 上到下 | 下到上*/ flex-wrap: nowrap | wrap | wrap-reverse; /*換行:不換行(默認) | 換行 | 換行並第一行在下方*/ flex-flow: flex-direction flex-wrap|initial|inherit; /*flex-direction :row | row-reverse | column | column-reverse | initial | inherit | 默認值是 "row"。*/ /*flex-wrap: nowrap | wrap | wrap-reverse | initial | inherit | 默認值是 "nowrap"。*/ /* initial 設置該屬性爲它的默認值。*/ /* inherit 從父元素繼承該屬性。*/ /*主軸方向和換行簡寫*/ justify-content: flex-start | flex-end | center | space-between | space-around; /*主軸對齊方式:左對齊(默認) | 右對齊 | 居中對齊 | 兩端對齊 | 平均分佈*/ align-items: flex-start | flex-end | center | baseline | stretch; /*交叉軸對齊方式:頂部對齊(默認) | 底部對齊 | 居中對齊 | 上下對齊並鋪滿 | 文本基線對齊*/ align-content: flex-start | flex-end | center | space-between | space-around | stretch; /*多主軸對齊:頂部對齊(默認) | 底部對齊 | 居中對齊 | 上下對齊並鋪滿 | 上下平均分佈*/ }
3.子元素樣式字體
.item{ order: <integer>; /*排序:數值越小,越排前,默認爲0*/ flex-grow: <number>; /* default 0 */ /*放大:默認0(即若是有剩餘空間也不放大,值爲1則放大,2是1的雙倍大小,以此類推)*/ flex-shrink: <number>; /* default 1 */ /*縮小:默認1(若是空間不足則會縮小,值爲0不縮小)*/ flex-basis: <length> | auto; /* default auto */ /*固定大小:默認爲0,能夠設置px值,也能夠設置百分比大小*/ flex: none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ] /*flex-grow, flex-shrink 和 flex-basis的簡寫,默認值爲0 1 auto,*/ align-self: auto | flex-start | flex-end | center | baseline | stretch; /*單獨對齊方式:自動(默認) | 頂部對齊 | 底部對齊 | 居中對齊 | 上下對齊並鋪滿 | 文本基線對齊*/ }
1.自定義蘋果圖標
在網站文件根目錄放一個 apple-touch-icon.png 文件,蘋果設備保存網站爲書籤或桌面快捷方式時,就會使用這個文件做爲圖標,文件尺寸建議爲:180px × 180px。
2.自定義favicon:
<link rel="icon" href="favicon.ico" mce_href="favicon.ico" type="image/x-icon">
3.定義瀏覽器點擊行爲:
<a href="tel:020-10086">打電話給:020-10086</a> <a href="sms:10086">發短信給: 10086</a> <a href="mailto:me@22278.club">發送郵件: me@22278.club</a>
4.定義上傳文件類型和格式
<input type=file accept="image/*">
上面的文件上傳框中,accept 能夠限制上傳文件的類型,參數爲 image/ 是全部圖片類型,點擊會彈出圖庫,也能夠指定圖片格式,參數設置成 image/png 則能夠限制圖片類型爲png;參數若是爲 video/ 則是選擇視頻的意思;accept 還能夠設置多個文件格式,語法爲 accept="image/gif, image/jpeg" ;
5.使用box-shadow改變(擋住)表單自動填充後的黃色
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill{ box-shadow:inset 0 0 0 1000px #fff; }
6.用CSS實現省略號文字截斷
white-space: nowrap; text-overflow: ellipsis; 兼容參考:[連接描述][1]
7.使用border繪製小三角
原理是:上下和左右的邊框對接實際上是個斜角,利用這個特性,使其中一邊的邊框透明,另一邊寫成想要的顏色並隱藏對邊,就能夠變成小箭頭形狀。
border-width: 10px 10px 10px 0; //左箭頭 border-color: transparent #fff; border-style: solid; width: 0;
Tootip寫法:
<!--html--> <div class="box">嗨!</div> /*--css--*/ .box{ position: relative; padding: 0 20px; width: 380px; height: 80px; border-radius: 8px; background: #efefef; font-size: 18px; line-height: 80px; } .box:after{ position: absolute; top: 50%; left: -15px; z-index: 1; display: block; margin-top: -15px; width: 0; border-color: transparent #efefef; border-style: solid; border-width: 15px 15px 15px 0; content: ""; }
; 【文章來源:移動WEB前端開發資源整合 - 兮兮】