vote up 2 vote down star

The skeleton of the HTML is this

<div class="TwoCol">
<img src="imgurl"/>
<h1>A headline</h1>
<p>Some exciting text</p>
<ul>
<li>Item A</li>
<li>Item B</li>
<li>Item C</li>
</ul>
<p>More riveting text </p>
</div>

The CSS is

.TwoCol img{
    float:left;
    padding-right:5px;
    border:none;
}
.TwoCol ul{
list-style-type:none;
}

The effect I am after is an image top left within my div with text to the right, if the text is longer than the image it wraps around under the image.

HOWEVER if the list starts to the right of the image, I want all the items to be aligned vertically below each other, not for list items below the image to appear under the image and break the list into two sections.

I need an image sketching utility :)

This

IMG Headline
IMG Para1
IMG Item A
    Item B
    Item C
Para2

not This

IMG Headline
IMG Para1
IMG Item A
Item B
Item C
Para2

Thanks!

flag

the TwoCol class isn't used in the HTML. Should the class of the div be TwoCol? – Sam Hasler Apr 15 at 12:01

4 Answers

vote up 2 vote down check

You could set the <ul> to

display: inline-block;

You might also want to clear: left; your images, since it's possible that they could start stacking up next to each other depending on the other content.

link|flag
This seems to be the answer! There is only ever one image... my textosketch is maybe not clear on that :) – Aidan Apr 15 at 16:25
vote up 1 vote down

Add a margin-left to your ul that is the width of the image (or a bit more).

link|flag
However, this will indent the whole list even if the top of it is far below the image, with unindented text flowing above it. – bobince Apr 15 at 12:48
vote up 0 vote down

What happen when you set your ul to float: left ?

link|flag
Would this cause problems for content that followed the <ul>? You'd need that content to "clear" the <ul>, but not the <img>s. – David Kolar Apr 15 at 13:14
vote up 0 vote down

id say set the image as a background-image and then give the ul or li a margin-left. make sure you have reset the padding and margin to 0 prior or the output will differentiate cross browser

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.