I have a problem about the width between monitor screen and phone. However, it's working well on the PC but not working on phone as there are blank space on the right side. The following code are below.
HTML
<div id="home-about">
<div class="middle-align">
<h1> ABOUT ME </h1>
<p> TESTING TESTING TESTING TESTING TESTING </p>
</div>
</div>
CSS
#home-about {
margin:0 auto;
clear:both;
height:880px;
padding:150px 50px 50px 50px;
background-color:#d24d57;
text-align:left;
line-height:25px;
}
.middle-align {
width:1200px;
margin:0 auto;
}
First of all, the colour of #home-about
is #d24d57
. The color is fully shown on monitor screen but not on the phone.
Here is JSFIDDLE.
As you can see JSFIDDLE, Try to scroll right, there are no colour, only white colour. How to fill in #d23d57
as well. Any idea?