Jump to content

klanessia

Newbie
  • Posts

    2
  • Joined

  • Last visited

Everything posted by klanessia

  1. Спасибо, валидацию прошел. Помог margin: 0 auto
  2. При валидации на w3c заметил ошибку: Line 9, Column 36: The align attribute on the div element is obsolete. Use CSS instead. <div id="page-wrap" align="center"> Когда align переношу в CSS выходит такое: #page-wrap Свойство align не существует : center center Как правильно сделать, что бы пройти валидацию? index.html <!DOCTYPE html> <html> <head> <title>Лестница</title> <meta http-equiv="content-type" content="text/html;charset=utf-8"> <link rel="stylesheet" type="text/css" href="./css/style.css"> </head> <body> <div id="page-wrap"> <img src="./images/circle.png" alt="logo"> </div> </body> </html> style.css * { margin: 0; padding: 0; } body { background: #ccc; } #page-wrap { width: 960px; margin: 50px auto; align: center; }
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy