I can't remove the indent from the top of the page:
body { margin: 0; } .page-header { background-color: green; } <html> <head> <title>Выпускники ФТИ</title> <meta charset="utf-8"> <link href="style.css" rel="stylesheet"> </head> <body> <header class="page-header"> <p>Graduate</p> </header> </body> </html> Set the indent to body equal to zero - removed only a small piece to the right. I tried to set the padding and margin for the body and for the header, but nothing changes. Tell me what to do?
