Jump to content

senioz

Neophyte
  • Posts

    2
  • Joined

  • Last visited

Everything posted by senioz

  1. Нужно сверстать по картинке меню-бар. Не получается сделать вот это поле поиска <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> .nav { display: flex; list-style-type: none; padding-left: 0; font-size: 17px; text-transform: uppercase; } .nav > li > a { color: #fff; text-decoration: none; } .nav > li { padding-left: 29px; margin-left: 30px; } .header { display: flex; background-color: #31485b; justify-content: space-between; align-items: center; } .sidebar { width: 410px; display: block; padding-right: 20px; margin: auto; margin-left: 250px; } ul.nav li a:hover { background-color: #687c8d; padding: 17.2px 35px; } input[type="text"], input[type="search"] { background-color: #687c8d; width: 60%; padding: 8px; margin: 0 50px } input[type="search"] { color: #31485b; font-style: italic; } </style> </head> <body> <div class="header"> <ul class="nav"> <li class="s1"><a href="#">Главная</a></li> <li><a href="#">Блог</a></li> <li><a href="#">Сервисы</a></li> <li><a href="#">Онлайн-профессии</a></li> <li><a href="#">О сайте</a></li> </ul> <div class="sidebar"> <form method="post" action="#" id="search_form" > <input type="search" name="search_field" placeholder="Поиск" /> </form> </div> </div> </body> </html>
×
×
  • 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