課程
/前端開發(fā)
/HTML/CSS
/企業(yè)網(wǎng)站綜合布局實戰(zhàn)
li設(shè)置浮動后,.top_content高度沒有了,這個不影響布局么?而且明顯有一段距離,不知道為什么?
2016-06-12
源自:企業(yè)網(wǎng)站綜合布局實戰(zhàn) 3-2
正在回答
?{?? ??? ?margin:0;?? ??? ?padding:0;?? ??? ?font-size:12px;?? ?}?? ?body{?? ??? ?background-color: #f5f5f5;?? ?}?? ?.top{?? ??? ?width:100%;?? ??? ?height:27px;?? ??? ?background:url(../images/top_bg.jpg) repeat-x;?? ??? ?}?? ?.top_content{?? ??? ?width:1000px;?? ??? ?margin:0 auto;?? ?}?? ??? ?.top_content li{?? ??? ?list-style-image:url(../images/li_bg.gif);?? ??? ?float:right;?? ??? ?width:80px;?? ??? ?line-height:27px;?? ?}?? ??? ?.top_content a:link,top_content a:visited?? ?{?? ??? ?color:#8E8E8E;?? ??? ?text-decoration:none;}?? ??? ??? ?.top_contenta:hover,.top_content a:active?? ?{?? ??? ?color:#900;?? ??? ?text-decoration:none;}?? ????
<body><div class="top">?? ?<div class="top_content">?? ??? ?<ul>??? ???????????? <li><a href="#">聯(lián)系我們</a></li>?? ??? ??? ???????????? <li><a href="#" onclick="AddFavorite(window.location,document.title)">加入收藏</a></li>??????????? <li> <a href="#" onclick="SetHome(window.location)">設(shè)為首頁</a></li>?? ??? ??? ??? ??? ?</ul>?? ?</div></div></body>
舉報
本課程重點介紹HTML/CSS實現(xiàn)常見企業(yè)網(wǎng)站布局的方法
1 回答為什么我的LOGO距離頂部有一段距離呢?
2 回答列表間距離
3 回答1.為什么不設(shè)置ul的margin-top:10px;時,列表內(nèi)容會離邊框一段較長的距離 2.給a的hover屬性設(shè)置背景顏色的時候,怎么em標簽也有設(shè)置的背景顏色
3 回答main和上面的部分中間有一段空隙怎么辦
1 回答老師,請看下,為什么我這個邊框始終離圖片有點距離呢
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網(wǎng)安備11010802030151號
購課補貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動學習伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號
2016-06-12
?{
?? ??? ?margin:0;
?? ??? ?padding:0;
?? ??? ?font-size:12px;
?? ?}
?? ?body{
?? ??? ?background-color: #f5f5f5;
?? ?}
?? ?.top{
?? ??? ?width:100%;
?? ??? ?height:27px;
?? ??? ?background:url(../images/top_bg.jpg) repeat-x;?? ?
?? ?}
?? ?.top_content{
?? ??? ?width:1000px;
?? ??? ?margin:0 auto;
?? ?}?? ?
?? ?.top_content li{
?? ??? ?list-style-image:url(../images/li_bg.gif);
?? ??? ?float:right;
?? ??? ?width:80px;
?? ??? ?line-height:27px;
?? ?}?? ?
?? ?.top_content a:link,top_content a:visited
?? ?{
?? ??? ?color:#8E8E8E;
?? ??? ?text-decoration:none;}?? ??? ?
?? ?.top_contenta:hover,.top_content a:active
?? ?{
?? ??? ?color:#900;
?? ??? ?text-decoration:none;}
?? ????
2016-06-12
<body>
<div class="top">
?? ?<div class="top_content">
?? ??? ?<ul>??? ?
??????????? <li><a href="#">聯(lián)系我們</a></li>?? ??? ??? ?
??????????? <li><a href="#" onclick="AddFavorite(window.location,document.title)">加入收藏</a></li>
??????????? <li> <a href="#" onclick="SetHome(window.location)">設(shè)為首頁</a></li>?? ??? ??? ?
?? ??? ?</ul>
?? ?</div>
</div>
</body>