As this image ?
it won't work as vertical-align: bottom has no effect in tableless structure
Edward
2010-05-31 14:26:29
A:
Add following style to image
float: left;
padding-right:10px;
padding-top:10px;
position:absolute,
bottom: 10px;
Salil
2010-05-31 14:24:22
+2
A:
That is not possible in HTML/CSS.
Absolute positioning allows placement like that, but you should ensure other content not clashing with it - no text flowing around.
Float mechanism gives you flowing around, but only allows placing float on the horizontal level of its "anchor" - no positioning but left/right..
buti-oxa
2010-05-31 14:31:07
A:
It is possible, I have come up with a right top placed image, not bottom left, maybe you can work around with it.
.wrap-box {
width: 400px;
text-align: justify;
}
.wrap-box img {
float: right;
padding: 0 0 5px 5px;
height: 80px;
width: 80px;
}
The box:
<div class="wrap-box">
<img src="http://farm5.static.flickr.com/4020/4656328142_faab111247.jpg"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</div>
YouBook
2010-05-31 15:31:13