jgthms / bulma

Modern CSS framework based on Flexbox
https://bulma.io
MIT License
48.71k stars 3.92k forks source link

element input, with date attribute #3790

Closed ericxin1982 closed 1 month ago

ericxin1982 commented 1 month ago

Hi @Zerquix18

If I have input with date attribute, is it ok? Since I saw the input css has no date attribute support.

Thanks Eric Xin

Ijee commented 1 month ago

I am not the one you tagged but what do you mean exactly?

This works just fine (v1) but isn't explicitly mentioned in the docs: See also: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/date

Markup:

    <input
           class="input is-primary"
           type="date"
           value="2024-04-17"
           min="2024-04-17"
           max="2024-12-31"/>

The output:

image

ericxin1982 commented 1 month ago

You are nice. Thanks!