Created
April 25, 2024 03:07
-
-
Save crshmk/5dea5405138977bee9f47a7ec2ca1f07 to your computer and use it in GitHub Desktop.
SVG with border radius
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>SVG with border radius</title> | |
</head> | |
<body> | |
<svg width="400" height="400" viewBox="0 0 400 400"> | |
<defs> | |
<clipPath id="borderRadius"> | |
<circle cx="200" cy="200" r="200"/> | |
</clipPath> | |
</defs> | |
<image | |
href="https://source.unsplash.com/random/400x400" | |
width="400" | |
clip-path="url(#borderRadius)" | |
/> | |
</svg> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment