微信小程序、html、css设置内容最小高度,超出自适应(自动延长)
程序员文章站
2022-07-14 21:26:53
...
微信小程序、html、css设置内容最小高度,超出自适应(自动延长)
微信小程序只需添加:
min-height: 120px;
height: auto !important;
html的话,考虑到兼容性,应用以下代码:
min-height:120px;
height: auto !important;
height:120px;
!important在ie7和ff都可以读到,而且权重高于后面的
height:120px;
所以当在ie7和ff显示的时候,就会用了前面的height:auto !important;
而ie6识别不了!important,auto
对它也不管用,因此会应用了后面的height:120px
的样式;而min-height:100px
表示最小高度为120px;此属性在ie7和firefox都可以识别。
上一篇: Ubuntu20.04将pycharm添加到桌面快捷栏
下一篇: css设置最小高度 然后自适应