首页 前端知识 css background-color属性无效

css background-color属性无效

2024-08-23 20:08:57 前端知识 前端哥 315 886 我要收藏

因为工作需要,最近在帮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%;即可。
特此记录,以免以后忘记。

转载请注明出处或者链接地址:https://www.qianduange.cn//article/16608.html
标签
评论
发布的文章

【Jquery】jquery的简单使用

2024-09-01 00:09:11

NodeJs使用jQuery中$Ajax

2024-09-01 00:09:45

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!