How can I center a <section>
vertically and horizontally inside a div?
jsFiddle: http://jsfiddle.net/F3fhK/
How can I center a <section>
vertically and horizontally inside a div?
jsFiddle: http://jsfiddle.net/F3fhK/
Try using this:
div section {
color: #FFFFFF;
background-color: #456087;
position: absolute;
top:25%;
left: 25%;
bottom: 25%;
right: 25%;
opacity:0.3;
filter:alpha(opacity=30%);
}
JsFiddle : http://jsfiddle.net/nfLyR/
There are two ways:-
Please refer this SO How to make an image center (vertically & horizontally) inside a bigger div
You can give margin:TOP RIGHT BOTTOM LEFT to inner content(img, div, section etc..).