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
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.