溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

去除html超鏈接中的下劃線

發(fā)布時(shí)間:2020-06-23 16:14:59 來源:網(wǎng)絡(luò) 閱讀:1417 作者:yeybz 欄目:web開發(fā)

  今天魅力網(wǎng)絡(luò)在給一北京的客戶弄個(gè)網(wǎng)站的頂部,加了個(gè)頂部設(shè)為主頁(yè)和收藏代碼,并加了個(gè)聯(lián)系我們導(dǎo)航等,發(fā)現(xiàn)直接用編輯器加的超鏈接是有下劃線的,影響我們的美觀 為此我們需要在html中上部加一段css來控制 不顯示下劃線 代碼如下

<style type="text/css">
<!--
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
-->
</style>

順便送上我這邊弄的一個(gè)頂部通欄代碼

  <table style="WIDTH: 100%; HEIGHT: 25px" border=0 cellSpacing=0 borderColor=#cccccc cellPadding=0 width="100%" bgColor=#bb4444 height=25>
    <tr>
      <td>
<P align=right><FONT size=3><FONT color=#ffff00>中心官方電話:010-58204910&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 中心官方域名:</FONT><A href="http://www.cbdc1.cn"><FONT color=#ffff00 size=4>www.cbdc1.cn</FONT></A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<FONT color=#ffff00>&nbsp;www.中國(guó)品牌發(fā)展中心.com</FONT><STRONG>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </STRONG></FONT><A href='http://www.cbdc1.cn/"'><FONT color=#ffff00 size=3>首頁(yè)</FONT></A><FONT color=#ffff00 size=3> | </FONT><A onclick=SetHome(window.location) href="javascript:void(0)"><FONT color=#ffff00 size=3>設(shè)為首頁(yè)</FONT></A><FONT color=#ffff00 size=3> | </FONT><A onclick=AddFavorite(window.location,document.title) href="javascript:void(0)"><FONT color=#ffff00 size=3>加入收藏</FONT></A>
<SCRIPT language=javascript type=text/javascript>
    //加入收藏
        function AddFavorite(sURL, sTitle) {
            sURL = encodeURI(sURL); 
        try{  
            window.external.addFavorite(sURL, sTitle);  
        }catch(e) {  
            try{  
                window.sidebar.addPanel(sTitle, sURL, "");  
            }catch (e) {  
                alert("加入收藏失敗,請(qǐng)使用Ctrl+D進(jìn)行添加,或手動(dòng)在瀏覽器里進(jìn)行設(shè)置.");
            }  
        }
    }
    //設(shè)為首頁(yè)
    function SetHome(url){
        if (document.all) {
            document.body.style.behavior='url(#default#homepage)';
              document.body.setHomePage(url);
        }else{
            alert("您好,您的瀏覽器不支持自動(dòng)設(shè)置頁(yè)面為首頁(yè)功能,請(qǐng)您手動(dòng)在瀏覽器里設(shè)置該頁(yè)面為首頁(yè)!");
        }
    }
</SCRIPT>
       <FONT color=#ffff00><FONT size=3>| </FONT></FONT><A title="" href="http://www.cbdc1.cn/a/zixun/" target=_blank><FONT color=#ffff00 size=3>在線留言</FONT></A><FONT color=#ffff00 size=3> |</FONT><A title="" href="http://www.cbdc1.cn/a/about/lianxiwomen/" target=_blank><FONT color=#ffff00 size=3>聯(lián)系我們</FONT></A><FONT color=#3c72c4><FONT color=#ffff00 size=3>|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;</FONT>&nbsp;</FONT></P></td>
    </tr>
  </table>

頂部通欄加入收藏等代碼是設(shè)計(jì)網(wǎng)頁(yè)常用的,演示網(wǎng)站中國(guó)品牌發(fā)展中心 http://www.cbdc1.cn 頂部的通欄 收藏代碼等  

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI