Resizing a div to fit content with maximum height

后端 未结 3 1697
一向
一向 2021-02-07 20:01

I have a div with dynamic content. When the content loads in the div I want the div to resize to fit the content. But I want this resizing to have a maximum height. If the conte

3条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-07 20:32

    You could do this with css, e.g.: max-height: 100px; overflow-y:scroll;

提交回复
热议问题