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