91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

CSS條件注釋怎么用

發布時間:2022-03-10 10:38:00 來源:億速云 閱讀:137 作者:小新 欄目:web開發

這篇文章給大家分享的是有關CSS條件注釋怎么用的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

由于瀏覽器版本的不同,對CSS里某些元素的解釋也不一樣,針對瀏覽器版本不同而選擇不同CSS的代碼,
其實我們還可以利用條件注釋的方法來達到類似的目的,什么是條件注釋,在此簡單介紹一下,無非就是一些if判斷啦,呵呵,但這些判斷不是在腳本里執行的,而是直接在html代碼里執行的,下面來介紹一下使用方法吧。


<!--[if XXX]>
這里是正常的html代碼
<![endif]&ndash;>

這里XXX是一些特定的東東,在此列表幾個出來,詳細介紹各自的含義:


<!&ndash;[if IE]> / 如果瀏覽器是IE /
<!&ndash;[if IE 5]> / 如果瀏覽器是IE 5 的版本 /
<!&ndash;[if IE 6]> / 如果瀏覽器是IE 6 的版本 /
<!&ndash;[if IE 7]> / 如果瀏覽器是IE 7 的版本 /

上面是幾個常用的判斷IE瀏覽器版本的語法,下面再來介紹一下相對比較少用的邏輯判斷的參數:
有幾個參數:lte,lt,gte,gt及!
各自的詳細解釋如下:
lte:就是Less than or equal to的簡寫,也就是小于或等于的意思。
lt :就是Less than的簡寫,也就是小于的意思。
gte:就是Greater than or equal to的簡寫,也就是大于或等于的意思。
gt :就是Greater than的簡寫,也就是大于的意思。

例句:


<!--[if gt IE 5.5]> / 如果IE版本大于5.5 /
<!&ndash;[if lte IE 6]> / 如果IE版本小于等于6 /
<!&ndash;[if !IE]> / 如果瀏覽器不是IE /

看到這里相信大家都已經明白了條件注釋的用法了,OK,那來舉個例子吧:


<!-- 默認先調用css.css樣式表 -->
<link rel="stylesheet" type="text/css" xhref="css.css" />
<!--[if !IE]>
<!&ndash; 非IE下調用1.css樣式表 &ndash;>
<link rel=”stylesheet” type=”text/css” xhref=”1.css” />
<![endif]&ndash;>
<!&ndash;[if lt IE 6]>
<!&ndash; 如果IE瀏覽器版本小于6,調用2.css樣式表 &ndash;>
<link rel=”stylesheet” type=”text/css” xhref=”2.css” />
<![endif]&ndash;>

定義什么瀏覽器下顯示什么內容。
這個dropmenu(下拉菜單)模型來自cssplay,使經過作者多次的研究和反復的測試才做出來的。我想那這個模型來實踐一下條件注釋的原理。
先看一個最簡單的模型
下面是xhtm:

復制代碼

代碼如下:


<div class="menu"> 
<ul> 
<li><a class="drop" xhref="../menu/index.html">DEMOS 
<!--[if IE 7]><!&ndash;> 
</a> 
<!&ndash;<![endif]&ndash;> 
<!&ndash;IE7時顯示</a>標簽&ndash;> 
<table><tr><td> 
<ul> 
<li><a xhref=”../menu/zero_dollars.html” title=”The zero dollar ads page”>zero dollars advertising page</a></li> 
<li><a xhref=”../menu/embed.html” title=”Wrapping text around images”>wrapping text around images</a></li> 
<li><a xhref=”../menu/form.html” title=”Styling forms”>styled form</a></li> 
<li><a xhref=”../menu/nodots.html” title=”Removing active/focus borders”>active focus</a></li> 
<li><a class=”drop” xhref=”../menu/hover_click.html” title=”Hover/click with no active/focus borders”>hover/click with no borders</li> 
<li class=”upone”><a xhref=”../menu/shadow_boxing.html” title=”Multi-position drop shadow”>shadow boxing</a></li> 
<li><a xhref=”../menu/old_master.html” title=”Image Map for detailed information”>image map for detailed information</a></li> 
<li><a xhref=”../menu/bodies.html” title=”fun with background images”>fun with background images</a></li> 
<li><a xhref=”../menu/fade_scroll.html” title=”fade-out scrolling”>fade scrolling</a></li> 
<li><a xhref=”../menu/em_images.html” title=”em size images compared”>em image sizes compared</a></li> 
</ul> 
</td></tr></table> 
<!&ndash;[if lte IE 6]> 
</a> 
<![endif]&ndash;> 
</li> 
<!&ndash;IE6時顯示</a>標簽&ndash;> 
</ul> 
</div> 

CSS

<link rel="stylesheet" media="all" type="text/css" xhref="final_drop.css" /> 
<!--[if lte IE 6]> 
<link rel=”stylesheet” media=”all” type=”text/css” xhref=”final_drop_ie.css” /> 
<![endif]&ndash;> 

采用雙樣式,給ie和非ie分別定義樣式,如果IE時候,在final_drop.css基礎上補充一個final_drop_ie.css
先看看非ie下的css是怎樣定義的


.menu ul li ul { 
display: none; 

/* specific to non IE browsers */ 
.menu ul li:hover a { 
color:#fff; 
background:#bd8d5e; 

/*定義鼠標滑過樣式*/ 
.menu ul li:hover ul { 
display:block; 
position:absolute; 
top:3em; 
margin-top:1px; 
left:0; 
width:150px; 

在非IE下,看到鼠標滑過時候li包含的ul顯示了,因為這些瀏覽器支持li:hover用法
IE下的css


.menu ul li a:hover { 
color:#fff; 
background:#bd8d5e; 

/*當鼠標滑過時li包含的ul顯示*/ 
.menu ul li a:hover ul { 
display:block; 
position:absolute; 
top:3em; 
left:0; 
background:#fff; 
margin-top:0; 
marg/in-top:1px; 

繼承上面的final_drop.css樣式,無鼠標時間時候li包含的ul不顯示
因為


<!--[if lte IE 6]>
</a>
<![endif]->

感謝各位的閱讀!關于“CSS條件注釋怎么用”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

css
AI

平乐县| 蕲春县| 涞源县| 和田市| 江阴市| 安国市| 巴塘县| 茂名市| 建平县| 平顶山市| 阜平县| 聂拉木县| 咸宁市| 宣汉县| 辽宁省| 商水县| 麦盖提县| 五寨县| 垦利县| 天峻县| 苏州市| 宜章县| 甘德县| 彰化市| 曲沃县| 突泉县| 固阳县| 密山市| 维西| 郁南县| 宿松县| 厦门市| 新安县| 苏尼特右旗| 玛纳斯县| 股票| 西林县| 平湖市| 澄迈县| 夏津县| 喀喇|