-1

There is some space between the body and it's elements. How can i remove the Space? See this image Image is Here

#rela {position:relative; width:100%; height:500px; clear:both; top:0; right:0; left:0;}
#absol {position:absolute; width:70%; height:400px; clear:left; float:left;}
#absol_2 {position:absolute; width:20%; height:400px; clear:riht; float:right;}
<div id='rela' style='background:green;'>

<div id='absol'  style='background:red;'></div>
<div id='absol_2' style='background:purple;' ></div>

</div>

1 Answers1

1

Use this in your css:

body{margin:0; padding:0}
DigitCart
  • 2,980
  • 2
  • 18
  • 28