react-datepicker input width will not adjust to 100%

前端 未结 8 2019
谎友^
谎友^ 2021-02-14 00:16

I am attempting to adjust the width of the react-datepicker input box and surprisingly have found little information out there and am unable to effect its width. I would just l

8条回答
  •  不思量自难忘°
    2021-02-14 00:46

    I also stumbled into this issue as well. To solve this, there is a property that you can add directly to the DatePicker component which is the "wrapperClassName" and this property will allow us to directly apply classes to the "react-datepicker-wrapper".

    Example:

    
    

    and then

    .datepicker {
        width: 100%;
    }
    

    or if you are using tailwindcss, just directly apply

    
    

    Note: This will only make the wrapper to be full width, therefore you will also need to apply "width: 100%" on the datepicker component if you want the input field to occupy full width as well.

提交回复
热议问题