Center a section that is inside a div with an image
This question already has an answer here:
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..).
下一篇: 以图片为中心放置在div内的部分
