I have two divs next to each other, one with float: right and the other with float: left. The one on the left contains an image (200x100px) and the div on the right should contain a text. I would like to have the text of the div on the right to start on the bottom left of the div instead of the top left, is that possible somehow?
Thanks
I have two divs next to each other, one with float: right and the
Share
You can make the container
position: relativethen make a div inside withposition: absolute; bottom: 0; left: 0;