Wie füge ich einen Grenzgradienten für Clip -Pfad mit transparentem Hintergrund oder RGBA hinzu?

Post a reply

Smilies
:) :( :oops: :chelo: :roll: :wink: :muza: :sorry: :angel: :read: *x) :clever:
View more smilies

BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Wie füge ich einen Grenzgradienten für Clip -Pfad mit transparentem Hintergrund oder RGBA hinzu?

by Anonymous » 21 Mar 2025, 05:56

Wie füge ich Gradientenrand zur Clip-Pfadform SVG + Hintergrundfarbe hinzu: transparent oder rgba? class = "Snippet-Code-CSS Lang-CSS PrettyPrint-Override">

Code: Select all

body {
min-height: 1000px;
}

.container {
width: 400px;
height: 400px;
background-color: rgba(56, 53, 75, 0.24);
backdrop-filter: blur(3px);
border-radius: 0.5rem;
clip-path: url(#b-clip-path-1);
}< /code>























Beispiel für das, was passieren soll:

Top