日历

« 2008-10-12  
   1234
567891011
12131415161718
19202122232425
262728293031 

最新评论

统计信息

  • 访问量: 97
  • 日志数: 4
  • 建立时间: 2008-07-06
  • 更新时间: 2008-08-29

RSS订阅

只想多认识些朋友~

我的最新日志

  • 今天作了非常丢人的事情

    2008-8-29

    今天作了非常丢人的事情,闯红灯。

    穿过马路一半时,眼看着车就要和我拥抱。

    车刹住了,剩下的就只有红脸的我和灰溜溜的破车沿着斑马线遁逃。

    这件事将伴随着我自惭和羞愧一整天了,每次都在嘲笑和嬉骂其他闯红灯的人,想不到

    到头来还是自己骂了自己。

    有错即改,以后即使上班迟到,也不赶这几十秒钟了。唉~

  • 随写随想

    2008-8-23

    周末

    挥汗间

    丝丝倦意

    段段联想

    倦鸟思巢

    淡看窗外烟云

    待觉醒之间

    整装待发

    翔翱天地之间

  • 关于CSS样式透明效果

    2008-7-06

    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调入对ie的CSS控制:

    以下为引用的内容:
    <!--[if gte IE 5.5]>
    <style type="text/css">
    #nav a{background: none;
    filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale', src='nav2.png')}
    #nav a:hover{filter: none}
    </style>
    <![endif]--> 

     

Open Toolbar