我注意到最小高度在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;
- }