如何通过CSS去掉色带边框?

How to get rid of the ribbon border by CSS?

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

右边框无法清理;在移动设备上,当页面缩小时,我的功能区向右溢出,超出父级 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;
}