最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

reactjs - Making dropdown extend list to bottom of dropdown on antd - Stack Overflow

programmeradmin2浏览0评论

I'm using a Select component from Antd, and I'm looking to extend the list downwards using dropdownstyles. However, I'm unable to make the list extend down. Thanks

<Select
          className="brandInput"
          value={brand}
          defaultValue={"Business Sector"}
          size="large"
          dropdownStyle={{ height: '40vh' }}
          onChange={changeBrand}
        >
          {sortedBrandList.map((brand) => (
            <Option key={brand.code} value={brand.code}>
              {brand.label}
            </Option>
          ))}
        </Select>
发布评论

评论列表(0)

  1. 暂无评论