用DIV CSS做一行3列,和1列多行的代码

时间:2021-04-16

  1行3列实现代码:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>1行3列实现代码</title>
<style type="text/css">
.abc{width: 500px;height: 300px;background: red;}
.a{float: left;width: 200px;height: 300px;background: blue;}
.b{float: left;width: 100px;height: 300px;background: green;}
.c{float: left;width: 200px;height: 300px;background: gray;}
</style>

</head>
<body>
<div class="abc">
<div class="a"></div>
<div class="b"></div>
<div class="c"></div>
</div>
</body>
</html>

  1列多行实现代码:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>1列多行实现代码</title>
<style type="text/css">
.a{width: 300px;height: 50px;background: blue;}
.b{width: 300px;height: 50px;background: green;}
.c{width: 300px;height: 50px;background: gray;}
</style>

</head>
<body>
<div class="a"></div>
<div class="b"></div>
<div class="c"></div>
</div>
</body>
</html>

  实现一行3列的话可以使用浮动布局或者定位,实现一列多行的使用使用默认布局模式即可。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章