text wrapping around pics

Discussion in 'CSS' started by shadowrelm, Dec 10, 2009.

  1. #1
    I know how to use div tags to place text and images in my page but is their any way to tell the text to wrap around an image easily? I know by manipulating multiple div tags and controlling the placement, and width of the tags I can achieve the same results but I am looking for a more time effective method.

    thanks
     
    shadowrelm, Dec 10, 2009 IP
  2. LeetPCUser

    LeetPCUser Peon

    Messages:
    711
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    0
    #2
    CSS
    
    .floatRight { float:right; }
    
    Code (markup):
    HTML
    
    <img class="floatRight" src="/images/yourPic.jpg" alt="My picture" />
    
    <p>A lot of text you want to wrap....</p>
    
    Code (markup):
    Think that should work.
     
    LeetPCUser, Dec 10, 2009 IP