Absolute position from the bottom
<html>
<head>
<title></title>
<style type="text/css">
.absolute {
position: absolute;
bottom: 50px;
left: 100px;
}
</style>
</head>
<body>
<div class="absolute">
<img src="http://java2s.com/style/logo.png" alt="cover" />
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit,
sed diam nonummy nibh euismod tincidunt ut laoreet dolore
magna aliquam erat volutpat...
</p>
</div>
</body>
</html>
Related examples in the same category