Can CSS be used to create rounded edges on a font?
I'm looking for an effect similar to the smooth edges in Photoshop
https://i.sstatic.net/w4Zd4.jpg
I attempted using an SVG filter, but found it quite complex.
Is there a simpler method?
Here is the code for the SVG filter that was used:
<svg viewbox="0 0 100% 100%">
<defs>
<filter id="smooth">
<feMorphology operator="dilate" radius="0" />
<feGaussianBlur stdDeviation="3" />
<feComponentTransfer>
<feFuncA type="table" tableValues="0 0 1 1"></feFuncA>
</feComponentTransfer>
<feComponentTransfer>
<feFuncA type="table" tableValues="0 0 1 1"></feFuncA>
</feComponentTransfer>
<feComponentTransfer out="rounded1">
<feFuncA type="table" tableValues="0 0 1 1"></feFuncA>
</feComponentTransfer>
<feComposite in2="rounded1" in="SourceGraphics" operator="in"/>
</filter>
</defs>
</svg>
For more information and explanations, visit: https://dev.to/codingdudecom/css-smooth-font-edges-3pbb