
Centering an element
By: a guest on
Aug 17th, 2012 | syntax:
HTML | size: 0.17 KB | hits: 16 | expires: Never
<html>
<head>
<style>
#save {
text-align: center;
vertical-align: middle;
}
</style>
</head>
<body>
<p id="save">Hello World!</p>
</body>
</html>