HTML和CSS经典布局3

时间:2023-03-09 02:06:46
HTML和CSS经典布局3

如下图:

HTML和CSS经典布局3

需求:

1. 如图

2. 可以从body标签开始。

 <!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style>
#content {
overflow: hidden;
}
.column-left {
margin: 25px 225px 25px 25px;
min-height: 500px;
}
.column-right {
float: right;
width: 200px;
min-height: 500px;
}
</style>
</head>
<body>
<div id="header" style="height: 50px; background: blue;"> </div>
<div id="content">
<div class="column-right" style="background-color: yellow;"> </div>
<div class="column-left" style="background-color: purple;"> </div>
</div>
</body>
</html>