您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關html中如何實現兩欄布局的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
html中實現兩欄布局的方法:1、利用float屬性和margin屬性來實現;2、利用BFC技術來實現;3、利用table布局技術來實現;4、利用flex彈性布局技術來實現;5、利用grid網格布局技術來實現。
本教程操作環境:windows7系統、CSS3&&HTML5版、Dell G3電腦。
1、利用float+margin實現
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> <style> .left1 { height: 300px; background-color: red; width: 400px; float: left; } .right1 { width: 400px; height: 300px; background-color: green; margin-left: 400px; } </style> </head> <body> <div></div> <div></div> </body> </html>
2、利用BFC實現
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> <style> .left2 { height: 300px; background-color: red; width: 400px; float: left; } .right2 { height: 300px; background-color: blue; overflow: hidden; } </style> </head> <body> <div></div> <div></div> </body> </html>
3、利用table布局
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> <style> .parent { display: table; width: 100%; table-layout: fixed; } .left3 { display: table-cell; height: 300px; width: 300px; background-color: pink; } .right3 { display: table-cell; height: 300px; background-color: purple; } </style> </head> <body> <div> <div></div> <div></div> </div> </body> </html>
4、利用flex布局
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> <style> .parentf { display: flex; flex-direction: row; justify-content: flex-start; width: 100%; } .left4 { height: 300px; width: 300px; background-color: skyblue; } .right4 { height: 300px; width: 100%; background-color: yellowgreen; } </style> </head> <body> <div> <div></div> <div></div> </div> </body> </html>
5、利用grid布局
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> <style> .parent { height: 400px; display: grid; grid-template-columns: 50% 50%; width: 100%; } .left5 { background-color: skyblue; } .right5 { background-color: pink; } </style> </head> <body> <div> <div></div> <div></div> </div> </body> </html>
感謝各位的閱讀!關于“html中如何實現兩欄布局”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。