13. LI中內(nèi)容超過長度后以省略號顯示的技巧
此技巧適用與IE與OP瀏覽器
<style type="text/css"> <!-- li { width:200px; white-space:nowrap; text-overflow:ellipsis; -o-text-overflow:ellipsis; overflow: hidden; } --> </style>
14.為什么web標(biāo)準(zhǔn)中IE無法設(shè)置滾動條顏色了
解決辦法是將body換成html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <style type="text/css"> <!-- html { scrollbar-face-color:#f6f6f6; scrollbar-highlight-color:#fff; scrollbar-shadow-color:#eeeeee; scrollbar-3dlight-color:#eeeeee; scrollbar-arrow-color:#000; scrollbar-track-color:#fff; scrollbar-darkshadow-color:#fff; } --> </style>
15.為什么無法定義1px左右高度的容器
IE6下這個問題是因為默認(rèn)的行高造成的,解決的技巧也有很多,例如:overflow:hidden zoom:0.08 line-height:1px
16.怎么樣才能讓層顯示在FLASH之上呢
解決的辦法是給FLASH設(shè)置透明
<param name="wmode" value="transparent" />
17.怎樣使一個層垂直居中于瀏覽器中
這里我們使用百分比絕對定位,與外補丁負(fù)值的技巧,負(fù)值的大小為其自身寬度高度除以二
<style type="text/css"> <!-- div { position:absolute; top:50%; lef:50%; margin:-100px 0 0 -100px; width:200px; height:200px; border:1px solid red; } --> </style>
FF與IE
出處:web前端寒風(fēng)
責(zé)任編輯:bluehearts
上一頁 CSS兼容性(IE和Firefox)技巧大全 [3] 下一頁 CSS兼容性(IE和Firefox)技巧大全 [5]
◎進(jìn)入論壇網(wǎng)頁制作、WEB標(biāo)準(zhǔn)化版塊參加討論,我還想發(fā)表評論。
|