В 39 уроке html ошибка?

0

В 39 уроке HTML ошибка! 

input[type="text"], input[type="password"], input[type="search"] {
color: #5d5d5d;
width: 60%;
padding: 8px;
}

Не работает, так как надо.

html
css

3 ответов

0

<div class="sidebar">

<h2>Поиск</h2>
<form method="post" action="#" id="serach-form">
<input type="search" name="search-field" placeholder="Что ищем?" />
<input type="submit" class="btn" value="найти" />
</form>

</div>

И тут всё ок, вроде как!

Переписывал с видео урока

0

Решение найдено, после 5 минут раздумий на StackOverflow!
Гугл вещь :) 

Use appearance property to avoid propietary stylizing and then you are able to style it:

input[type=search]{
-moz-appearance: none;/* older firefox */
-webkit-appearance: none; /* safari, chrome, edge and ie mobile */
appearance: none; /* rest */
}

1

В css куске кода вроде все ок, может в html коде ошибка?

Sign up or Log in to write an answer