gpt4 book ai didi

css - 如何通过 CSS 去除色带边框?

转载 作者:太空宇宙 更新时间:2023-11-04 07:22:36 24 4
gpt4 key购买 nike

我正在尝试使用 Bootstrap 4 在 div 周围创建功能区。

我无法清理右边框;在移动设备上,当页面缩小时,我的功能区向右溢出,超出父 div:https://jsfiddle.net/auj4q3a2/

HTML:

<div class="container-fluid">

<div class="card profile-card">
<div class="container-fluid">
<div class="row user-social-detail">
<div class="col-lg-12 col-sm-12 col-12">
<a href="#"><i class="fa fa-facebook" aria-hidden="true"></i></a>
<a href="#"><i class="fa fa-twitter" aria-hidden="true"></i></a>
<a href="#"><i class="fa fa-instagram" aria-hidden="true"></i></a>
<a href="#"><i class="fa fa-linkedin" aria-hidden="true"></i></a>
</div>
</div>
</div>
</div>

</div>

CSS:

.profile-card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
max-width: 475px;
margin: auto;
text-align: center;
}

.user-social-detail{
margin: 0 -30px;
padding: 15px 0px;
background-color: #ffd280;
border-radius: 4px;
}
.user-social-detail a i{
color:#fff;
font-size:23px;
padding: 0px 5px;
}
.user-social-detail::before,
.user-social-detail::after {
content: '';
position: absolute;
z-index: -1;
left: -45px;
top: -28px;
display: block;
width: 40px;
height: 0px;
border: 30px solid transparent;
border-right: 20px solid #e5bd73;
border-bottom-color: transparent;
border-left-color: transparent;
}

.user-social-detail::after {
left: auto;
right: -45px;
border-left: 20px solid #e5bd73;
border-right: 30px solid transparent;
}

如何将色带放入移动设备上的容器中,如左侧?

任何建议或反馈都将受到欢迎,我们将不胜感激。

最佳答案

知道了!

你必须添加

overflow-x: hidden !important;.container-fluid

编辑:实际上,只有在第一个 .container-fluid 中这是必需的,因此您可以将以下内容添加到您的 CSS 文件中:

.container-fluid:first-of-type {
overflow-x: hidden !important;
}

关于css - 如何通过 CSS 去除色带边框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50141054/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com