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.
我有一个页面,我希望根据内容自动调整高度,但如果我这样做了height:100%;、height:auto;或min-height:100%;,它就不起作用。我能做些什么来解决这个问题?
height:100%;
height:auto;
min-height:100%;
这是我的网站页面:http ://ht.io-web.com/tutor-registration
当您只希望它扩展到其内容的尺寸时,为什么要设置高度?如果您省略高度,它会在您用内容填充容器时根据需要扩展。 您能否更详细地描述您页面中的问题,并可能给我们一个代码示例?我会更新我的答案以更好地帮助你。
从您提供的链接来看,您似乎需要清除浮动。尝试添加overflow:auto;到有问题的容器 div 中。
overflow:auto;