jiucao视频在线观看,女人的精水喷出来视频,中文字幕色婷婷在线视频,亚洲人成网亚洲欧洲无码久久

透明的(transparence)CSS菜單
時(shí)間:2006年05月29日 內(nèi)容來源: 互諾科技 瀏覽量:0

這是個(gè)透明的CSS菜單,兼容性:IE5.5+、Opera、Frefox、Netscape。

CSS代碼:

以下是引用片段:
body{
    font: 80% Arial,sans-serif;
    background: #666;
}

#nav{
    width: 170px;
    background: url(navbg.gif) bottom;
    list-style-type: none;
    margin: 0;
    padding: 0;    
}

#nav a{
    display: block;
    width: 170px;
    line-height: 25px;
    text-decoration: none;
    color: #333;
    text-indent: 10px;
    font-weight: bold;
    background: url(nav2.png);
}

#nav a:hover{
    background: none;
    color: #999;
}

用if調(diào)入對ie的CSS控制:

以下是引用片段:
<!--[if gte IE 5.5]>
<style type="text/css">
#nav a{background: none;
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale', src='http://www.68design.net/Web-Guide/HTMLCSS/nav2.png')}
#nav a:hover{filter: none}
</style>
<![endif]-->