We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
这个方法很简单:
min-height: 200px; height: auto !important; height: 200px;
上面的代码就轻松的帮我们实现了跨浏览器的最小高度设置问题。 height:auto !important是高度自适应,主要的是,!important只是对于ie6不认识而已,其他浏览器都是以这个为最高的优先级,执行这个,火狐、ie6会无视这个。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
这个方法很简单:
上面的代码就轻松的帮我们实现了跨浏览器的最小高度设置问题。
height:auto !important是高度自适应,主要的是,!important只是对于ie6不认识而已,其他浏览器都是以这个为最高的优先级,执行这个,火狐、ie6会无视这个。
The text was updated successfully, but these errors were encountered: