Div height:0px does not work?

后端 未结 10 1312
既然无缘
既然无缘 2020-12-05 04:42

Setting a div height to 0px does not seem to work.

The div expands to show it

10条回答
  •  我在风中等你
    2020-12-05 04:51

    #yiv1734505183 .yiv1734505183portrait{
        display:none;
        font-size:0;
        max-height:0;
        line-height:0;
        padding:0;
        overflow:hidden;
    }
    
    @media (min-width:481px){
        #yiv1734505183 .yiv1734505183mobile-hide{
            display:block;
            overflow:visible;
            width:auto !important;
            max-height:inherit !important;
            min-height:auto !important;
        }
    }
    @media (min-width:481px){
        #yiv1734505183 .yiv1734505183portrait{
            display:none;
            font-size:0;
            line-height:0;
            min-height:0;
            overflow
    

提交回复
热议问题