我试图仅使用纯 html/css 进行此布局,如图所示,但不能。
我在这方面花了很多时间,并且只成功地处理了表格元素。我正在尝试使用基本的 DIV /CSS 来做到这一点
<html>
<style>
table, th, td {
border: 1px solid black;
}
#upleft {
width: 100px;
height: 300px;
background: red;
float: left;
}
#upright {
width: 300px;
height: 200px;
background: blue;
float: left
}
#below {
height: 300px;
width: 400px;
background: green
}
</style>
<body>
<p style="font-size: 1.5em;"> </p>
<p> </p>
<table class="editorDemoTable" style="width: 581px; height: 101px;">
<tbody>
<tr style="height: 49px;">
<td style="width: 619px; height: 49px;">
<p> </p>
<p> </p>
</td>
<td style="width: 423px; height: 49px;"><strong></strong></td>
</tr>
<tr style="height: 230px;">
<td style="width: 19px; height: 230px;">
<div id="target"></div>
</td>
</tr>
</tbody>
</table>
<p></p>
</body>
</html>
请建议。
BR,
繁花不似锦
红颜莎娜
相关分类