centered vertically and horizontally
an image centered in a div centered in a div centered on the page
by Kai Carver
HTML
<div class="container2">
<div class="container">Tardar Sauce (born April 4, 2012), better known by her Internet moniker "Grumpy Cat", is a cat and Internet celebrity known for her grumpy facial expression.
Her owner Tabatha Bundesen says that her permanently grumpy-looking face is due to feline dwarfism. Grumpy Cat's popularity originated from a picture posted to the social news website Reddit by Bundesen's brother Bryan on September 22, 2012. It was made into an image macro with grumpy captions.
<img class="image" src="http://makeameme.org/media/templates/120/grumpy_cat.jpg" alt="" width="120" height="120"/>
</div></div>
CSS
.container2 {
background-color: yellow;
position: absolute;
width: 300px;
height: 300px;
top: 50%;
left: 50%;
margin:-150px 0 0 -150px;
}
.container {
background-color: pink;
position: absolute;
top: 50%;
left: 50%;
margin:-125px 0 0 -125px;
width: 240px;
height: 240px;
font-size: 0.95em;
padding: 5px;
}
.image {
position: absolute;
top: 50%;
left: 50%;
width: 120px;
height: 120px;
margin:-60px 0 0 -60px;
-webkit-animation:spin 4s linear infinite;
-moz-animation:spin 4s linear infinite;
animation:spin 4s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }