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