Skip to content

Instantly share code, notes, and snippets.

@intro-to-d3
Created May 20, 2016 00:47
Show Gist options
  • Save intro-to-d3/5a5d06e079e2f618267a504cbc79483f to your computer and use it in GitHub Desktop.
Save intro-to-d3/5a5d06e079e2f618267a504cbc79483f to your computer and use it in GitHub Desktop.
Styling SVG Text with CSS
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Example</title>
<style>
text {
font-size: 2em;
}
</style>
</head>
<body>
<svg width="300" height="250">
<text x="50" y="50">Hello SVG Text!</text>
</svg>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment