因为工作需要,最近在帮H5同事开发几个页面,在使用H5进行如下布局的时候,发现设置 background-color
为白色无效。
代码如下:
<div class ="bottomBar"><div style="position: fixed; left: 20px;">已选中 <span style="color: #EB3C3C;">{{ this.choseIndex}}</span> 指标</div><div style="position: fixed; right: 20px;" class="result">查看{{totalBonds}}只基金</div></van-button>
</div>
css
代码如下:
.bottomBar {position: fixed; bottom: 0; background-color: white;height: 60px;padding-left: 10px;padding-right: 10px;vertical-align: middle;display: flex; justify-content: center; align-items: center;}
最终调试发现,是因为bottomBar
没有设置width
导致,该css
增加 width: 100%;
即可。
特此记录,以免以后忘记。