Skip to content

Instantly share code, notes, and snippets.

@ktzanev
Last active March 26, 2017 14:38
Show Gist options
  • Save ktzanev/431a7944e48bcf0faae92f5c3a4c3b43 to your computer and use it in GitHub Desktop.
Save ktzanev/431a7944e48bcf0faae92f5c3a4c3b43 to your computer and use it in GitHub Desktop.
SVG - group (GistRun)
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Exemple commande SVG</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Exemple commande SVG</h1>
<svg viewBox="0 0 200 100">
<g fill="green" fill-opacity=".49" transform="rotate(-10)">
<circle cx="30" cy="30" r="21"/>
<rect x="30" y="30" width="70" height="40"/>
</g>
</svg>
</body>
</html>
svg {
border: 1px solid #eef;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment