skip to Main Content

Css – Could someone tell me why my radial gradient SVG is not animating on hover?

The radial gradient is supposed to grow from 10% to 100% on hover, but it's just not doing anything. Can't understand what I'm doing wrong. <svg id="svgDoc" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 500 500" shape-rendering="geometricPrecision" text-rendering="geometricPrecision"> <style><![CDATA[ #svgDoc { pointer-events: all…

VIEW QUESTION

Html – Text decoration span over <span>s

I have a <ul> element, with list items as such: <ul> <li class="list__item"> <span class="list__quantity">3</span> <span class="list__unit">Kg</span> <span class="list__name">Tomatos</span> </li> <li class="list__item"> <span class="list__quantity">3</span> <span class="list__unit">Kg</span> <span class="list__name">Cucmbers</span> </li> </ul> I want to have a text-decoration: line-through that spans across…

VIEW QUESTION
Back To Top
Search