如何添加具有半径和透明背景的渐变边框[重复]

问题描述 投票:0回答:2

我只需要一个具有一定高度和宽度并在其中包含一些文本的 div 并且它应该是透明背景并且还具有渐变和边框半径的边框

我已经尝试了很多方法但是没有任何问题有一些方法,在他们的帮助下我们可以添加边框渐变和边框半径但是我们不能添加透明背景

html css background border border-radius
2个回答
-1
投票
 body {
    background-color: rgb(24, 22, 22);
  }
  .my_box {
    width: 400px;
    height: 400px;
    color: white;
    margin: 24px auto;
  }

  .my_box {
    /* broder-radius should be same on both my_box and my_box::after */
    border-radius: 20px;
    /* box background */
    background: linear-gradient(
      140.61deg,
      rgba(255, 255, 255, 0.08) -1.87%,
      rgba(255, 255, 255, 0) 105.41%
    );
    backdrop-filter: blur(11px);
    /* background: transparent; */
    position: relative;
    /* below padding is equivalent to line no.46 which is padding-5px */
    padding: 5px;
  }

  .my_box::after {
    content: "";
    position: absolute;
    /* broder-radius should be same on both my_box and my_box::after */
    border-radius: 20px;
    /* this paadding is the width of border */
    padding: 5px;
    /* broder-color */
    background: linear-gradient(
      119.1deg,
      rgba(233, 8, 8, 0.5) -2.34%,
      rgba(10, 78, 141, 0) 34.91%,
      rgba(59, 32, 102, 0) 64.9%,
      rgba(55, 119, 216, 0.5) 102.19%
    );
    /*  we are using below property instead of left-0 top-0 bottom-0 right-0 */
    inset: 0;
    /* height: 100%;
       width: 100%;
       top: 0;
       left: 0; */
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    /* the mask-composite property specifies that the XOR blending mode should be used to combine the mask image and the element's background. */
    -webkit-mask-composite: xor;
    pointer-events: none;
  }
<div>
  <div style="text-align: center" class="my_box">
    <h2 style="margin-top: 24px; color: aqua">
      You can change the background of this box to transparent
    </h2>
  </div>
</div>

-1
投票

试试这个...

<style>
 .my_box {
  width: 400px;
  height: 400px;
  border-radius: 20px;
  padding: 5px;
  linear-gradient(#FFF 0 0) padding-box, linear-gradient( 119.1deg, rgba(233, 8, 8, 0.5) -2.34%, rgba(10, 78, 141, 0) 34.91%, rgba(59, 32, 102, 0) 64.9%, rgba(55, 119, 216, 0.5) 102.19%) border-box;
  border: solid 24px transparent;
</style>

<div class="my_box">
 HELLO
</div>
© www.soinside.com 2019 - 2024. All rights reserved.