这篇文章给大家分享的是有关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进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。