Posted in svg
265
12:06 am, January 15, 2024
 

green circle tick svg

converted into inline css and html

HTML

<h2>SVG</h2>
<svg width="11" height="11" viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg">
  <g clip-path="url(#clip0_2311_341)">
    <path d="M10.4811 4.98093C10.1943 4.98093 9.96224 5.21301 9.96224 5.49981C9.96224 7.96033 7.96033 9.96224 5.49981 9.96224C3.03928 9.96224 1.03776 7.96033 1.03776 5.49981C1.03776 3.03928 3.03928 1.03776 5.49981 1.03776C6.18478 1.03776 6.84153 1.18879 7.45156 1.48627C7.71091 1.61194 8.01964 1.504 8.14569 1.24714C8.27079 0.989321 8.164 0.67868 7.90656 0.553013C7.15313 0.185927 6.34344 0 5.49981 0C2.4672 0 0 2.4672 0 5.49981C0 8.53242 2.4672 11 5.49981 11C8.53242 11 11 8.53242 11 5.49981C11 5.21301 10.7679 4.98093 10.4811 4.98093Z" fill="#00A551"/>
    <path d="M4.30965 5.13286C4.10694 4.93015 3.77857 4.93015 3.57586 5.13286C3.37315 5.33556 3.37315 5.66394 3.57586 5.86665L4.82128 7.11207C4.92254 7.21333 5.05545 7.26405 5.18818 7.26405C5.3209 7.26405 5.45362 7.21333 5.55507 7.11207L9.91377 2.75338C10.1165 2.55067 10.1165 2.22229 9.91377 2.01958C9.71106 1.81688 9.38269 1.81688 9.17998 2.01958L5.18818 6.01138L4.30965 5.13286Z" fill="#00A551"/>
  </g>
  <defs>
    <clipPath id="clip0_2311_341">
      <rect width="11" height="11" fill="white"/>
    </clipPath>
  </defs>
</svg>

<h2>CSS Class</h2>
<div class="tick-circle"></div>

CSS

.tick-circle {
	background: url('data:image/svg+xml,<svg width="11" height="11" viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_2311_341)"><path d="M10.4811 4.98093C10.1943 4.98093 9.96224 5.21301 9.96224 5.49981C9.96224 7.96033 7.96033 9.96224 5.49981 9.96224C3.03928 9.96224 1.03776 7.96033 1.03776 5.49981C1.03776 3.03928 3.03928 1.03776 5.49981 1.03776C6.18478 1.03776 6.84153 1.18879 7.45156 1.48627C7.71091 1.61194 8.01964 1.504 8.14569 1.24714C8.27079 0.989321 8.164 0.67868 7.90656 0.553013C7.15313 0.185927 6.34344 0 5.49981 0C2.4672 0 0 2.4672 0 5.49981C0 8.53242 2.4672 11 5.49981 11C8.53242 11 11 8.53242 11 5.49981C11 5.21301 10.7679 4.98093 10.4811 4.98093Z" fill="%2300A551"/><path d="M4.30965 5.13286C4.10694 4.93015 3.77857 4.93015 3.57586 5.13286C3.37315 5.33556 3.37315 5.66394 3.57586 5.86665L4.82128 7.11207C4.92254 7.21333 5.05545 7.26405 5.18818 7.26405C5.3209 7.26405 5.45362 7.21333 5.55507 7.11207L9.91377 2.75338C10.1165 2.55067 10.1165 2.22229 9.91377 2.01958C9.71106 1.81688 9.38269 1.81688 9.17998 2.01958L5.18818 6.01138L4.30965 5.13286Z" fill="%2300A551"/></g><defs><clipPath id="clip0_2311_341"><rect width="11" height="11" fill="white"/></clipPath></defs></svg>');
  height:11px;
  width:11px;
}

SVG

CSS Class

View Statistics
This Week
59
This Month
271
This Year
1851

No Items Found.

Add Comment
Type in a Nick Name here
 
Search Code
Search Code by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

You could also follow me on twitter. I have a couple of youtube channels if you want to see some video related content. RuneScape 3, Minecraft and also a coding channel here Web Dev.

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
Why did Odeo fail? Lack of Focus
Evan Williams, co-founder of Twitter and Blogger, failed with his first startup, Odeo. What went wrong with Odeo? Williams' first startup was a podcasting company that failed due to a lack of focus. He learned that it's important to stay focused and adapt to changes in the market.
Odeo
Random CSS Property

:invalid

The :invalid CSS pseudo-class represents any <input> or other <form> element whose contents fail to validate.
:invalid css reference