Skip to content

Instantly share code, notes, and snippets.

@Alkimisti
Created October 13, 2020 11:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Alkimisti/5c52297ced5134a0080bb7397846a58b to your computer and use it in GitHub Desktop.
Save Alkimisti/5c52297ced5134a0080bb7397846a58b to your computer and use it in GitHub Desktop.
rounded-corners
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>rect</title>
<style>
#katrori {
fill: red;
stroke: black;
stroke-width: 5;
opacity: 0.5;
width: 300px;
height: 300px;
}
</style>
</head>
<body>
<svg width="400" height="400">
<rect id="katrori" x="50" y="50" rx="20" ry="20">
</svg>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment