not able to add background color inside circle text, can you please help me for that ? #67
nikul-taurusdevsync
started this conversation in
General
Replies: 1 comment
-
Hi,
.pie {
position: relative;
z-index: 1;
}
.pie::after {
position: absolute;
content: "";
width: 120px;
height: 120px;
background-color: #b1b1b1;
left: calc(50% - 60px);
border-radius: 50%;
z-index: 0;
top: 0;
bottom: 0;
margin: auto;
}
svg {
position: relative;
z-index: 1;
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Beta Was this translation helpful? Give feedback.
All reactions