0

In HTML forms, I'd like to know how to style the Date input and change the format(DD/MM/YYYy or MM-DD-YYYY)

  • 1
    Possible duplicate of [How to set date format in HTML date input tag?](https://stackoverflow.com/questions/6978631/how-to-set-date-format-in-html-date-input-tag) – Morse Apr 26 '18 at 15:45

1 Answers1

0

You can style your date elements using CSS:

.date .month{}
.date .day{}

Here is an article that I found

Follow this to learn about Datetime attributes

ButterJones
  • 89
  • 1
  • 2
  • 9