css - How to get elastic table next to an image? -


this want: http://img571.imageshack.us/img571/4618/myimage.png

this best come with:

css

img {   background: red;   float: left; }  table {   background: yellow;   width: 90%; } 

html

<img src="image.jpg" width="40" height="40" /> <table>   <tr><td>table</td></tr> </table> 

there problem approach. if resize browser window @ point table jumps below image: click view demo.

what better way of achieving layout?

try surrounding table div that:

<img src="image.jpg" width="40" height="40" />  <div style="padding-left:40px">          <table>      <tr><td>table</td></tr>    </table>  </div> 

Comments

Popular posts from this blog

javascript - Enclosure Memory Copies -

php - Replacing tags in braces, even nested tags, with regex -