Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!doctype html>
<style>
text::first-letter {
font-size: 3em;
}
text {
font-size: 10px;
}
</style>
<svg width="500px" height="50px">
<text x="0" y="40">The first-letter size should be 45px</text>
</svg>
<script>
document.body.offsetTop;
document.querySelector('text').style.fontSize = "15px";
</script>