I'm just new and I'm creating a web page. Whenever I zoom in, the page does not show up the scroll button and when it came to >= 300%, the letter split into 2 lines (pic 1). How to make the page work statically like in pic 2, and when zoom out at less than 100%, the width is still 100%?
#Header {
background-color: #1abbcc;
color: white;
text-align: center;
position: absolute;
width: 100%;
height: 50px;
font-size: 32px;
}
body {
margin: 0;
font-family: Tahoma;
width: 100%;
}
span {
left: 0%;
width: 100%;
position: absolute;
top: 50%;
transform: translateY(-50%);
}
<div id="Header">
<span>
CSP Online Practice Environment
</span>
</div>