Posted in svg
1666
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
15
This Month
99
This Year
1666

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...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

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
You drown not by falling in the river, but by staying submerged.
Unknown
Random CSS Property

border-block-width

The border-block-width CSS property defines the width of the logical block borders of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the border-top-width and border-bottom-width, or border-left-width, and border-right-width property depending on the values defined for writing-mode, direction, and text-orientation.
border-block-width css reference