Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

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

  • 5 replies
  • 1 has this problem
  • 2 views
  • Last reply by 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?

All Replies (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