The margins from left and right in web page shows white space which is the color of the background , i want to remove it ,how?
this is my css:
.box-one {
background-color: #c8d6e5;
height: 300px;
width:200;
margin-top: 1200px;
margin-left: 40px;
margin-right: 40px;
margin-bottom: 29px;
}
Just add
font-size: 0to remove all white spaces, including text.But if you're looking to maintain text, try
padding: 0.