Zoeken in Support

Vermijd ondersteuningsscams. We zullen u nooit vragen een telefoonnummer te bellen, er een sms naar te sturen of persoonlijke gegevens te delen. Meld verdachte activiteit met de optie ‘Misbruik melden’.

Learn More

Deze conversatie is gearchiveerd. Stel een nieuwe vraag als u hulp nodig hebt.

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

  • 5 antwoorden
  • 1 heeft dit probleem
  • 1 weergave
  • Laatste antwoord van 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?

Alle antwoorden (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