今天魅力網絡在給一北京的客戶弄個網站的頂部,加了個頂部設爲主頁和收藏代碼,並加了個聯繫咱們導航等,發現直接用編輯器加的超連接是有下劃線的,影響咱們的美觀 爲此咱們須要在html中上部加一段css來控制 不顯示下劃線 代碼以下javascript
<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>
順便送上我這邊弄的一個頂部通欄代碼css
<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 中心官方域名:</FONT><A href="http://www.cbdc1.cn"><FONT color=#ffff00 size=4>www.cbdc1.cn</FONT></A> <FONT color=#ffff00> www.中國品牌發展中心.com</FONT><STRONG> </STRONG></FONT><A href='http://www.cbdc1.cn/"'><FONT color=#ffff00 size=3>首頁</FONT></A><FONT color=#ffff00 size=3> | </FONT><A onclick=SetHome(window.location) href="javascript:void(0)"><FONT color=#ffff00 size=3>設爲首頁</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("加入收藏失敗,請使用Ctrl+D進行添加,或手動在瀏覽器裏進行設置."); } } } //設爲首頁 function SetHome(url){ if (document.all) { document.body.style.behavior='url(#default#homepage)'; document.body.setHomePage(url); }else{ alert("您好,您的瀏覽器不支持自動設置頁面爲首頁功能,請您手動在瀏覽器裏設置該頁面爲首頁!"); } } </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>聯繫咱們</FONT></A><FONT color=#3c72c4><FONT color=#ffff00 size=3>| </FONT> </FONT></P></td> </tr> </table>
頂部通欄加入收藏等代碼是設計網頁經常使用的,演示網站中國品牌發展中心 http://www.cbdc1.cn 頂部的通欄 收藏代碼等 html