這篇文章主要為大家展示了“負margin怎么用”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學習一下“負margin怎么用”這篇文章吧。
創(chuàng)新互聯(lián)主營泗洪網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,手機APP定制開發(fā),泗洪h5微信小程序搭建,泗洪網(wǎng)站營銷推廣歡迎泗洪等地區(qū)企業(yè)咨詢1. 實現(xiàn)左右兩列布局
方法一:
<div> <div style="float:left;width:200px;">左側(cè)</div> <div style="margin-left:200px;background:#999;">右側(cè)</div> </div>
方法二:
<div> <div style="width:200px;height:200px;">左側(cè)</div> <div style="margin-left:200px;margin-top:-200px;">右側(cè)</div> </div>
對比兩種方法,第一種用到float,弊端就是應用float在IE中可能引起很多bug,第二種的話用-margin,本事還是比較贊的,暫時沒發(fā)現(xiàn)沒事問題;
2.導航欄
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style type="text/css"> *{ margin: 0; border: 0; padding: 0; } ul{ overflow: hidden; } ul li{ background: #999; border-left: 1px solid #000; width:60px; height:30px; float: left; list-style: none; text-align: center; margin-left:-1px; } </style> </head> <body> <div style="margin-left:20px;"> <ul> <li>1</li> <li>2</li> <li>3</li> </ul> </div> </body> </html>
或者:
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style type="text/css"> *{ margin: 0; border: 0; padding: 0; } ul{ } ul li{ background: #999; border-left: 1px solid #000; border-right: 1px solid #000; width:60px; height:30px; float: left; list-style: none; text-align: center; margin-left:-1px; } </style> </head> <body> <div style="margin-left:20px;"> <ul> <li>1</li> <li>2</li> <li>3</li> </ul> </div> </body> </html>
合理使用overflow以及-margin 。
以上是“負margin怎么用”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學習更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
標題名稱:負margin怎么用-創(chuàng)新互聯(lián)
本文URL:http://aaarwkj.com/article30/hosso.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供營銷型網(wǎng)站建設(shè)、網(wǎng)站設(shè)計、網(wǎng)站策劃、網(wǎng)站建設(shè)、網(wǎng)站收錄、移動網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容