小编Gu *_*hao的帖子

溢出隐藏在绝对定位的 SVG 上

想要使阴影容器外溢出的圆圈部分消失。我正在使用 bootstrap-4。

body {
  overflow: hidden;
}

.container {
  margin-top: 5%;
  width: 1200px;
  height: 625px;
  border-radius: 4px;
  background-color: #fff;
  overflow: hidden;
}

.bg {
  position: absolute;
  display: inline-block;
  right: 10px;
  top: 20px;
  width: 30vw;
  height: 30vw;
  overflow: hidden;
}
Run Code Online (Sandbox Code Playgroud)
<div class="container shadow-lg">
  <div class="bg">
    <svg class="head_bg1" viewBox="0 0 100 100">
      <defs>
        <linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="0%">
            <stop offset="0%" style="stop-color:#614385;stop-opacity:1"/>
            <stop offset="100%" style="stop-color:#516395;stop-opacity:1"/>
        </linearGradient>
      </defs>
      <circle cx="50" cy="50" r="50" fill="url(#grad1)"/>
    </svg>
  </div>
</div>
Run Code Online (Sandbox Code Playgroud)

https://jsfiddle.net/djaspar/zr8eqL8j/

结果:

结果图像

css svg bootstrap-4

5
推荐指数
1
解决办法
2110
查看次数

标签 统计

bootstrap-4 ×1

css ×1

svg ×1