Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

input type='date' ignores input {border='none'}

  • 5 ответов
  • 1 имеет эту проблему
  • 2 просмотра
  • Последний ответ от Col_Boogie

more options

to <style> I added

       input {border=none}

It worked on other input fields but not

       <input type='date' required>

is there a fix or workaround for this?

to <style> I added input {border=none} It worked on other input fields but not <input type='date' required> is there a fix or workaround for this?

Все ответы (5)

more options

CSS property: value pairs are written with a colon, not an = sign.

input {
    border: none !important;
}
more options

If you add the style inline then you need to use this:

<input type="date" required style="border:none !important;">

See also this article:

more options

No, changed as shown with additional parameter name='date'. Problem did not go away. If it makes a difference, form was inside a table with an inner table inside the form.

more options

Can you share a link to a page that demonstrates the problem?

more options

Strange it suddenly went away. Close this out