Assuming you have an image with class my-image
, you can make it round with CSS using border-radius
property:
36 chars4 lines
To set this CSS property using JavaScript, you can access the element using document.querySelector
and set its style property as follows:
index.tsx89 chars3 lines
This will make the image appear round.
gistlibby LogSnag