Sunday, March 27, 2011

Placing text over image using CSS

<html>

<head>

<title></title>

</head>

<body>

<div id="main">

<div><img src="yourImage.jpg" /></div>

<div style="position: absolute; left: 20px; top: 160px;">

<span style="font-weight: bold; color: #fff;">Text Here...</span>

</div>

</div>

</body>

</html>

No comments: