css – min-height:在Opera中无法正常工作

前端之家收集整理的这篇文章主要介绍了css – min-height:在Opera中无法正常工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我注意到最小高度在Opera中不起作用.我正在尝试这样的事情:
<div class="content"><div>
<div class="content newstyle"><div>

我的CSS代码是:

.content {
    min-height: 600px;
}
.newstyle {
    min-height: auto;
}

而Opera的行为就像min-height不存在一样.
如果我在.newstyle中应用任何其他风格,如背景或其他任何风格,那么它运作良好.但是min-height:auto似乎不起作用……

任何的想法?

解决方法

CSS2.1 defines the initial value of min-height to be 0,not auto. CSS2.1中的值auto永远不存在,因此在CSS2.1中无效.只需使用min-height:0代替:
.content {
    min-height: 600px;
}
.newstyle {
    min-height: 0;
}
原文链接:https://www.f2er.com/css/215322.html

猜你在找的CSS相关文章