blob: 772d835266ff86d46b418d48f1931b49427b2e5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<title>::first-letter and overflow</title>
<style>
div {
height: 3em; width: 8em;
padding: 3px;
background: yellow; color: black;
line-height: 1.0;
}
div::first-letter { font-size: 4em }
</style>
<div>Hello</div>
|