Images

Discussion in 'HTML & Website Design' started by johny2000, Jul 12, 2009.

  1. #1
    If want to put images on my site side by side about one inche apart .What would be the best and easy way to format this .I am using Expression Web software.

    Thank you
     
    johny2000, Jul 12, 2009 IP
  2. hizuka007

    hizuka007 Peon

    Messages:
    23
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    you should learn to use html/css.... in css you should use float: left .
     
    hizuka007, Jul 12, 2009 IP
  3. kocur

    kocur Peon

    Messages:
    73
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    kocur, Jul 12, 2009 IP
  4. danstrog

    danstrog Member

    Messages:
    126
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    26
    #4
    Put the images into a
    <div id="images">

    In the css file write:
    #images img { float:left; display:block; margin-right:30px; }

    After closing the div, write
    <div style="clear:both;"></div>
     
    danstrog, Jul 12, 2009 IP
  5. Bogdanel

    Bogdanel Active Member

    Messages:
    77
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    65
    #5
    he can also use <br clear="all"> :)
     
    Bogdanel, Jul 13, 2009 IP