HTML and Pictures dilemma. Help please?

JeXx

New member
Basically, I need to know how to make one picture appear under the other by using html. Feel free to add necessary CSS tags as well. The <p> and <br> functions don't work, the images still appear in one line, I even defined <p> in CSS as a clear left statement, but still, no do. Heeelp.
 
I've never had break not work, but this is one alternative idea. I haven't tested it, and I regularly have CSS not do what I think the manual says it should, so take it with a large grain of salt of salt. Good luck.

.forceClear {
float:left;
width:100%
}

<div class="forceClear">
<img>
</div>

<img>
 
Back
Top