My div has a specific size and contains an image along with two paragraphs.
All elements are set to float left.
div {
width: 400px;
height: 400px;
}
img {
float: left;
width: 100px;
height: 100px;
}
.one {
float: left;
}
.two {
float: left;
}
<div>
<img src="http://img.timeinc.net/time/daily/2010/1001/360_br10q_0208.jpg" alt="">
<p class="one">one</p>
<p class="two">two</p>
</div>
I'm trying to have the paragraphs stacked on top of each other while still maintaining the left alignment. Is this possible? If so, how can I achieve it?