Horizontal and Vertical centered div
|
Light Poster
|
|
| 19May2009,11:18 | #1 |
|
Can anybody share code for Horizontal and Vertical centered div as I am not able to get it.
|
|
Go4Expert Founder
|
![]() |
| 19May2009,19:43 | #2 |
|
Try
HTML Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <TITLE> New Document </TITLE> <style> div.album { padding-top:25%; height:50%; width:100%; background-color: green; text-align:center; vertical-align:middle; } </style> </HEAD> <BODY> <div class="album"> This is some text </div> </BODY> </HTML> |

