IE6 min-height dilemma

前端 未结 4 676
野的像风
野的像风 2021-02-10 08:00

Here is my site: http://smartpeopletalkfast.co.uk/ppp/home-page.html

I want the input forms to be the same height as the buttons to their right. I\'ve done this with a m

4条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-10 08:33

    If the issue is indeed just getting min-height working in IE6, use the Min-Height Fast Hack:

    selector {
        min-height:500px;
        height:auto !important;
        height:500px;
    }
    

    It's been around for a long time, so it's easily recognizable for anybody maintaining your CSS in the future.

提交回复
热议问题