I have noticed that min-height
is not working in Opera. I am trying something like this:
<div class="content"><div>
<div class="content newstyle"><div>
And my CSS code is:
.content {
min-height: 600px;
}
.newstyle {
min-height: auto;
}
And Opera just acts like min-height
didn't exist.
If I apply any other style in .newstyle
, like background or whatever, then it works well. But min-height: auto
seems not to work...
Any idea?