Help me please! How to remove indents from an element that appears in the html page as a title? I need the page header to be all in one color but on the sides (left, right.) And on the top (top) the body color of the page is visible. using margin: 0; padding: 0; does not work. Maybe there is another way? Help!
HTML: <body> <div id="header"> <p><a href=""><img src="img/avto.jpg" /></a></p> </div> CSS: body {background-color: #CCCCCC; font-family: cursive, Verdana, Arial, sana-serif; } #header {background: #000000; height: 100px; margin: 0; padding: 0; } #header img { position: relative; left: 100px; top: 20px; }