React Select auto size width

前端 未结 5 2134
闹比i
闹比i 2020-12-30 06:00

When using react-select it is not auto sizing by option value, but using width:100% as you can see in picture:

Options are short:<

5条回答
  •  误落风尘
    2020-12-30 06:38

    if you're using react-select v3 you can use customStyles object:

    const customStyles = {
      container: provided => ({
        ...provided,
        width: 150
      })
    };
    
    
                            
        
    提交评论

提交回复
热议问题