react-datepicker input width will not adjust to 100%

前端 未结 8 2026
谎友^
谎友^ 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:28

    Simple solution: Add this to your css file.

    .react-datepicker__input-container {
      width: inherit;
    }
    
    .react-datepicker-wrapper {
      width: 100%;
    }
    

提交回复
热议问题