I have several DIV which I want to arrange as shown here Div Layout design
Below is the HTML that I tried to achieve layout using CSS:
<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>
Can anyone help me out in CSS to achive the layour mentioned in image ??
Thanks in advance.
I just added some more styles, check it