簡評: 瀏覽器兼容性問題常常讓人頭疼检吆,以下是避免出現(xiàn)這些問題的五個技巧薪捍。
1. 前綴 CSS3 樣式
如果您正在使用任何類型的現(xiàn)代 CSS 片段币他,例如框尺寸(box-sizing)或背景剪輯(background-clip),請確保使用適當(dāng)?shù)那熬Y莲祸。
-moz- /* Firefox and other browsers using Mozilla's browser engine */
-webkit- /* Safari, Chrome and browsers using the Webkit engine */
-o- /* Opera */
-ms- /* Internet Explorer (but not always) */
2. 使用 reset
您可以使用 normalize.css蹂安,下面是我用的,來自 Genesis Framework Style Sheet锐帜。
html,body,div,span,applet,object,iframe,h1,h2,
h3,h4,h5,h6,p,blockquote,a,abbr,acronym,address,
big,cite,del,dfn,em,img,ins,kbd,q,s,samp,small,
strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,
dd,ol,ul,li,fieldset,form,label,legend,table,caption,
tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,
embed,figure,figcaption,footer,header,hgroup,input,menu,
nav,output,ruby,section,summary,time,mark,audio,video {
border: 0;
margin: 0;
padding: 0;
vertical-align: baseline;
}
3. 避免填充寬度
當(dāng)你添加寬度為一個元素的填充時田盈,它會變得更大。寬度和填充將被加在一起缴阎。
要解決這個問題允瞧,可以添加這個:
* { -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box; /* Firefox, other Gecko */
box-sizing: border-box; }
4. 清除 float
如果沒有清除,很容易出問題蛮拔。感興趣的可以看看 Chris Coyier 的這篇文章述暂。
可以使用此 CSS 代碼片段來清除:
.parent-selector:after {
content: "";
display: table;
clear: both;
}
如果你包裝大部分的元素,一個非常簡單的方法是將它添加到你的 wrap 類中建炫。
.wrap:after {
content: "";
display: table;
clear: both;
}
搞定畦韭!
5. 測試
創(chuàng)建您自己的跨瀏覽器基礎(chǔ)架構(gòu)或僅使用 Endtest。
如果你讓這些東西成為一種習(xí)慣肛跌,大概可以搞定九成的瀏覽器問題艺配。
原文鏈接:5 Tricks to Avoid Cross Browser Issues
推薦閱讀:YouTube 上有哪些自學(xué)編程的優(yōu)質(zhì)頻道
歡迎關(guān)注:知乎專欄「極光日報」据过,每天為 Makers 導(dǎo)讀三篇優(yōu)質(zhì)英文文章。