there is an HTML code like bellow:
<div class="home">
<img id="back" src="" />
<div class="menu">
<ul>
<li><a href="#">link1</a></li>
<li><a href="#">link2</a></li>
<li><a href="#">link3</a></li>
<li><a href="#">link4</a></li>
<li><a href="#">link5</a></li>
</ul>
</div>
<div id="data" class="data">
a few data that will change for every page, in fact content of each link will comes here by ajax.
</div>
</div>
Everything here has an absolute size by pixel in width and height, now I want to minimize the whole thing in this div by 90%, so none of their position wont be changed. In fact I prefer to put whole of the code into another div and make it a little smaller than its actual size.
How could it be possible? I prefer CSS but jquery is Ok too.