Consider there are two div
s like showing bellow.
<style>
div.main{
width: 1000px;
height: 300px;
background-color: black;
}
div.sub{
width: 500px;
height: 100px;
background-color: red;
}
</style>
<div class="main">
<div class="sub">
</div>
</div>
I want the sub div
to be vertically centered not to the whole page but to the main div
.