I have a div with a height of 100%, hence it takes all full window height, and obviously as you scroll down it scrolls to the next divs.
The problem is that text is stuck on top and I want it to be centered, until a user decides to scroll down.
Below is the html
<div id="header1">
<h1>Welcome to test</h1>
<p></p>
</div>
Below is the css:
#header1 {
width:100%;
background: #6C7E82;
top: 50%;
min-height: 100%;
}