12 lines
208 B
HTML
12 lines
208 B
HTML
<!doctype html>
|
|
<style>
|
|
text::first-letter {
|
|
font-size: 3em;
|
|
}
|
|
text {
|
|
font-size: 15px;
|
|
}
|
|
</style>
|
|
<svg width="500px" height="50px">
|
|
<text x="0" y="40">The first-letter size should be 45px</text>
|
|
</svg>
|