blob: 44f20b89df1d3c762727c325ed51bd431dfdcf8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!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>
|