el-dialog 内部添加固定定位 ,背景颜色超出问题 (粘性定位)

发布时间:2024年01月11日

使用固定定位会出现背景颜色超出的问题

 position: fixed;
  left: 0;
  bottom: 0;
  width: 80%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #fff;
  overflow: hidden;

解决办法??粘性定位

  position: sticky;
  bottom: 0;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #fff;
  overflow: hidden;

文章来源:https://blog.csdn.net/m0_71835253/article/details/135522042
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。