Relative position image
<html> <head> <title>Relative position image</title> <style type="text/css"> .relative { position: relative; top: 100px; left: 20px; } </style> </head> <body> <img src="http://www.java2s.com/style/logo.png" class="relative" alt="cover" /> <p>This is a test.</p> </body> </html>