blob: 2c7b24148867a57a77a12b10421db5606fe55470 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!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>
|