Image and Table in a web page

Discussion in 'CSS' started by moin, Nov 7, 2007.

  1. #1
    Hello friends,

    I have a web page to design, in which i need to arrange an image first and then on the right side of the image i need to set a table.
    How should i design it?

    Thanks.
     
    moin, Nov 7, 2007 IP
  2. Machi

    Machi Active Member

    Messages:
    540
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    60
    #2
    Set img to float:left and table as float:right;

    eg in CSS:
    img { float:left; }
    table { float:right; }
    .cleaner { line-height:0, padding:0, margin:0, height:0,... }
    Code (markup):
     
    Machi, Nov 11, 2007 IP