Set in the middle a div inside another div?

You can use css display:table-cell write like this main { height:600px; vertical-align:middle; display:table-cell; } Check this jsfiddle.net/sandeep/weGGn/9 You can also use position:absolute but in this case you have to define height of that div check this article jakpsatweb.cz/css/css-vertical-center-so... Check this article URL3 may be that's help your.

You can use css display:table-cell write like this #main { height:600px; vertical-align:middle; display:table-cell; } Check this jsfiddle.net/sandeep/weGGn/9/ You can also use position:absolute but in this case you have to define height of that div. Check this article jakpsatweb.cz/css/css-vertical-center-so... Check this article URL3 may be that's help your.

You can use relative-absolute positioning to achieve this: #main { height: 200px; position: relative; background-color: lime; } #description { width: 50%; height: 50%; position: absolute; left: 25%; /* (100 - width)/2 */ top: 25%; /* (100 - height)/2 */ background-color: cyan; } Demo here.

You can use table-cell - but it is only supported in newer browsers. I'm not sure on the version numbers (but I think it's like IE8+ and FF6+) But if you're not worried about compatibility with old browsers use table-cell. Otherwise you have to use negative margins and stuff like that.

You can read about it here: phrogz.net/css/vertical-align/index.html.

Here: #main { height:600px; width:600px; background-color: blue; position: absolute; } #description { display:block; height:50%; width: 50%; margin: 25% auto; position:relative; font-size:18px; background-color: red; } jsfiddle Here.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions