tags:

views:

52

answers:

4

alt text

As this image ?

A: 

You would use:

float: left; 
position: absolute;
bottom: 0px;
dscher
it won't work as vertical-align: bottom has no effect in tableless structure
Edward
A: 

Add following style to image

float: left; 
padding-right:10px;
padding-top:10px;
position:absolute,
bottom: 10px;
Salil
this way image will lay over text which is not expected
Edward
+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
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"&gt; 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
It´s not possible with html / css. Float it left and it´s on the left but you can´t align it with the bottom of the paragraph.
jeroen
Hmm, suppose so, but only top left and right can only work, so it's half possible :P
YouBook