Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前有一个盒子width: 153px;,height: auto;但是当页面加载时,因为里面没有任何东西,盒子没有正文。
width: 153px;
height: auto;
如何让它加载高度:51px,然后在添加图像后更改为自动?
我试过什么?
我尝试height: 53px auto; 在 html 中的 div 上使用设置高度。
height: 53px auto;
我确定它很简单,但我似乎无法解决。感谢您提供的任何帮助,我感谢您的时间。
这是无效的!
以这种方式使用它:
height: 53px; height: auto;
相反,您可以拥有 amin-height并将其设置为53px.
min-height
53px
min-height: 53px; height: auto;
利用
min-height: 53px; height: auto