我有几个我想要安排的 DIV,如下所示Div Layout design
下面是我尝试使用 CSS 实现布局的 HTML:
<body>
<div class="page">
<div>
<div style="margin: 2px 0 2px 0px; text-align: center; font-size: large">
<span>Chart Title</span>
</div>
<div style="float: left;display:block;">
<span>Y-Axis Title</span>
</div>
<div id="Chart1">
<!--Chart would be displayed here-->
</div>
<div style="clear:both; margin: 2px 0 2px 0px; text-align: center; ">
<span>X-Axis Title</span>
</div>
</div>
</div>
任何人都可以帮助我在 CSS 中实现图像中提到的布局吗?
提前致谢。