<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    春風博客

    春天里,百花香...

    導航

    <2008年10月>
    2829301234
    567891011
    12131415161718
    19202122232425
    2627282930311
    2345678

    統計

    公告

    MAIL: junglesong@gmail.com
    MSN: junglesong_5@hotmail.com

    Locations of visitors to this page

    常用鏈接

    留言簿(11)

    隨筆分類(224)

    隨筆檔案(126)

    個人軟件下載

    我的其它博客

    我的鄰居們

    最新隨筆

    搜索

    積分與排名

    最新評論

    閱讀排行榜

    評論排行榜

    四種CSS鏈接按鈕示例

    代碼下載:
    http://m.tkk7.com/Files/sitinspring/CssLinkButton20081008210352.rar



    背景色切換鏈接按鈕CSS代碼:
    /*2008.10.08*/

    #linkButtonDiv1 ul
    {
        margin
    :0;
        padding
    :0;
        list-style-type
    :none;
    }


    #linkButtonDiv1 li a
    {
        width
    :100px;
        height
    :20px;
        
        display
    :bolck;    
        font-size
    : 16px; 
            
        margin
    :5px;
        
        border
    : 1px solid #000000; 
        
        padding
    :5px;
        
        color
    :#000000;
        background-color
    :#94b8e9;
        text-decoration
    :none;
        text-align
    :center;
    }


    #linkButtonDiv1 li a:hover
    {
        color
    :#ffffff;
        background-color
    :#336699;
        text-decoration
    :underline;
    }



    背景圖片切換鏈接按鈕CSS代碼:
    /*2008.10.08*/

    #linkButtonDiv2 ul
    {
        margin
    :0;
        padding
    :0;
        list-style-type
    :none;
    }


    #linkButtonDiv2 li a
    {
        width
    :100px;
        height
    :20px;
        
        display
    :bolck;    
        font-size
    : 16px; 
            
        margin
    :5px;
        
        border
    : 1px solid #000000; 
        
        padding
    :5px;
        
        color
    :#000000;
        background
    :url(../img/bg-0314.gif);
        text-decoration
    :none;
        text-align
    :center;
    }


    #linkButtonDiv2 li a:hover
    {
        color
    :#ffffff;
        background
    :url(../img/bg-0315.gif);
        text-decoration
    :underline;
    }



    背景色突起效果按鈕示例:
    /*2008.10.08*/

    #linkButtonDiv3 ul
    {
        margin
    :0;
        padding
    :0;
        list-style-type
    :none;
    }


    #linkButtonDiv3 li a
    {
        width
    :100px;
        height
    :20px;
        
        display
    :bolck;    
        font-size
    : 16px; 
            
        margin
    :5px;
        
        padding
    :5px;
        
        color
    :#8d4f10;
        background
    :#efb57c;
        
        text-decoration
    :none;
        text-align
    :center;
        
        border
    :2px outset #efb57c;
    }


    #linkButtonDiv3 li a:hover
    {
        font-weight
    :bold;
        color
    :#ffffff;
        background
    :#daa670;
        text-decoration
    :underline;
        
        border
    :2px outset #daa670;
    }




    一張背景圖片左右切換按鈕CSS代碼:
    /*2008.10.08*/

    #linkButtonDiv4 ul
    {
        margin
    :0;
        padding
    :0;
        list-style-type
    :none;
    }


    #linkButtonDiv4 li a
    {
        width
    :114px;
        height
    :24px;
        
        display
    :bolck;    
        font-size
    : 12px; 
            
        margin
    :5px;
        
        padding
    :5px;
        
        color
    :#000000;
        background
    :url(../img/buttonbg.jpg) norepeat left top;
        text-decoration
    :none;
        text-align
    :center;
    }


    #linkButtonDiv4 li a:hover
    {
        font-weight
    :bold;
        color
    :#ffffff;
        background-position
    :right top;
        text-decoration
    :underline;
    }



    頁面HTML代碼:
    <body bgcolor="#cccccc">
        
    <div id="bodyDiv">
            
    <div id="header">
                
    <jsp:include page="/web/page/branch/header.jsp"/>
            
    </div>
            
    <div id="menubar">
                
    <jsp:include page="/web/page/branch/menubar.jsp"/>
            
    </div>
            
    <div id="content">
                
    <table border="0" width="100%" height="100%" style="table-layout:fixed;word-wrap:break-word;word-break;break-all;">
                    
    <tr>
                        
    <td valign="top" width="25%">
                            
    <div class="contentTitle">
                                
    <strong>背景色切換鏈接按鈕示例</strong> 
                            
    </div>
                            
    <div id="linkButtonDiv1" class="contentConcept">
                                
    <ul>
                                    
    <li><href="#">鏈接按鈕一</a></li>
                                    
    <li><href="#">鏈接按鈕二</a></li>
                                    
    <li><href="#">鏈接按鈕三</a></li>
                                    
    <li><href="#">鏈接按鈕四</a></li>
                                    
    <li><href="#">鏈接按鈕五</a></li>
                                    
    <li><href="#">鏈接按鈕六</a></li>
                                
    </ul>
                            
    </div>
                        
    </td>
                        
                        
    <td valign="top" width="25%">
                            
    <div class="contentTitle">
                                
    <strong>背景圖片切換鏈接按鈕示例</strong> 
                            
    </div>
                            
    <div id="linkButtonDiv2" class="contentConcept">
                                
    <ul>
                                    
    <li><href="#">鏈接按鈕一</a></li>
                                    
    <li><href="#">鏈接按鈕二</a></li>
                                    
    <li><href="#">鏈接按鈕三</a></li>
                                    
    <li><href="#">鏈接按鈕四</a></li>
                                    
    <li><href="#">鏈接按鈕五</a></li>
                                    
    <li><href="#">鏈接按鈕六</a></li>
                                
    </ul>
                            
    </div>
                        
    </td>
                        
                        
    <td valign="top" width="25%">
                            
    <div class="contentTitle">
                                
    <strong>背景色突起效果按鈕示例</strong> 
                            
    </div>
                            
    <div id="linkButtonDiv3" class="contentConcept">
                                
    <ul>
                                    
    <li><href="#">鏈接按鈕一</a></li>
                                    
    <li><href="#">鏈接按鈕二</a></li>
                                    
    <li><href="#">鏈接按鈕三</a></li>
                                    
    <li><href="#">鏈接按鈕四</a></li>
                                    
    <li><href="#">鏈接按鈕五</a></li>
                                    
    <li><href="#">鏈接按鈕六</a></li>
                                
    </ul>
                            
    </div>
                        
    </td>
                        
                        
    <td valign="top" width="25%">
                            
    <div class="contentTitle">
                                
    <strong>一張背景圖片左右切換按鈕示例</strong> 
                            
    </div>
                            
    <div id="linkButtonDiv4" class="contentConcept">
                                
    <ul>
                                    
    <li><href="#">鏈接按鈕一</a></li>
                                    
    <li><href="#">鏈接按鈕二</a></li>
                                    
    <li><href="#">鏈接按鈕三</a></li>
                                    
    <li><href="#">鏈接按鈕四</a></li>
                                    
    <li><href="#">鏈接按鈕五</a></li>
                                    
    <li><href="#">鏈接按鈕六</a></li>
                                
    </ul>
                            
    </div>
                        
    </td>
                    
    </tr>
                
    </table>
            
    </div>        
        
    </div>
        
    <div id="footer">
            
    <jsp:include page="/web/page/branch/footer.jsp"/>
        
    </div>
    </body>

    posted on 2008-10-08 12:02 sitinspring 閱讀(14774) 評論(1)  編輯  收藏 所屬分類: HTML,CSS&JS

    評論

    # re: 四種CSS鏈接按鈕示例[未登錄] 2012-03-15 16:43 YY

    GOOD, thanks  回復  更多評論   

    sitinspring(http://m.tkk7.com)原創,轉載請注明出處.
    主站蜘蛛池模板: 亚洲综合偷自成人网第页色| 国产亚洲精品a在线无码| 亚洲宅男精品一区在线观看| 2019中文字幕在线电影免费| 亚洲精品线在线观看| 欧洲精品99毛片免费高清观看| 亚洲AV无码一区二区三区DV| 亚洲免费视频网站| 亚洲成a人不卡在线观看| 久久午夜免费视频| 亚洲欧美黑人猛交群| 国产一级淫片视频免费看| 一级毛片a女人刺激视频免费| 久久夜色精品国产亚洲av| 日本免费在线观看| 亚洲福利视频网址| 四虎免费在线观看| 四虎永久在线精品免费一区二区| 国产成人亚洲影院在线观看| 国产精品偷伦视频观看免费| 亚洲人和日本人jizz| 精品久久久久久久免费人妻 | 毛片免费在线观看网站| 噜噜综合亚洲AV中文无码| 亚洲成a人片在线观看老师| 成av免费大片黄在线观看| 亚洲综合色一区二区三区小说| 免费无码肉片在线观看| 牛牛在线精品免费视频观看| 久久精品视频亚洲| 最近中文字幕mv免费高清视频7| 黄色免费网址大全| 亚洲成色999久久网站| 女人18毛片水最多免费观看| 黄页视频在线观看免费| 亚洲高清在线观看| 在线看片无码永久免费aⅴ| 十八禁在线观看视频播放免费| 亚洲国产精品综合久久20| 亚洲精品老司机在线观看| 精品福利一区二区三区免费视频 |