I am looking for creating an infinity symbol using CSS, SVG or Canvas.
If you do not know what the symbol of infinity is, this is an example:

I tried to create the form, but I managed to create only one side of the form. Ultimately, I would like to keep this in one element and as simple as possible.
.infinity {
width: 100px;
height: 100px;
border-radius: 50% 50% 0 50%;
border: 5px solid black;
transform: rotate(-45deg);
}
<div class="infinity"></div>
Run codeHide resultI found this question:
But I consider using this as an icon or image of some kind and therefore would like a little more freedom with the form.
source
share