Home > Mobile >  bulma calendar to show only month option
bulma calendar to show only month option

Time:11-27

Is it possible to give only MM/YYYY option in bulma-calendar extension ? The default option shows dd-mm-yyyy?

<div class ="date-cal">
    <input type = "date">
</div>

enter image description here

CodePudding user response:

You can use the type "month" for input tags in HTML:

<input type="month" min="2018-03" value="2018-05">
  • Related