您好,登錄后才能下訂單哦!
今天小編給大家分享一下IE各版本CSS Hack的語法有哪些的相關知識點,內容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。
為了兼容IE各個版本,需要在CSS中添加額外的代碼,比如以前常用的_width。之所以工作,是因為瀏覽器會忽略不能解析的樣式規則,因此舉個例子來說,把_width寫在width下面,對于非IE瀏覽器會解析到width,而對于IE6來說,會用_width覆蓋前面的width規則,從而達到針對IE6瀏覽器的兼容。對于IE其他版本(6~11),也存在同樣的兼容性處理方法。
下面是一個速查表:
div {
property:value; /* ie 8/9*/
property:value9; /* ie 9*/
*property:value; /* ie 7*/
_property:value; /* ie 6*/
}
IE 6
* html .ie6 {property:value;}
or
.ie6 { _property:value;}
IE 7
*+html .ie7 {property:value;}
or
*:first-child+html .ie7 {property:value;}
IE 6 and 7
@media screen9 {
.ie67 {property:value;}}
or
.ie67 { *property:value;}
or
.ie67 { #property:value;}
IE 6, 7 and 8
@media screen,screen9 {
.ie678 {property:value;}}
IE 8
html>/**/body .ie8 {property:value;}
or
@media screen {
.ie8 {property:value;}}
IE 8 Standards Mode Only
.ie8 { property /***/: value9 }
IE 8,9 and 10
@media screen {
.ie8910 {property:value;}}
IE 9 only
@media screen and (min-width:0) and (min-resolution: .001dpcm) {
// IE9 CSS
.ie9{property:value;}}
IE 9 and above
@media screen and (min-width:0) and (min-resolution: +72dpi) {
// IE9+ CSS
.ie9up{property:value;}}
IE 9 and 10
@media screen and (min-width:0) {
.ie910{property:value9;} /* backslash-9 removes ie11+ & old Safari 4 */}
IE 10 only
_:-ms-lang(x), .ie10 { property:value9; }
IE 10 and above
_:-ms-lang(x), .ie10up { property:value; }
or
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.ie10up{property:value;}}
IE 11 (and above..)
_:-ms-fullscreen, :root .ie11up { property:value; }
以上就是“IE各版本CSS Hack的語法有哪些”這篇文章的所有內容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。