blob: fad9f0e63d40722ed55c1f728197e3b7c49819d2 (
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; float: left; }
</style>
<div>Hello world, testing, testing, testing, testing</div>
|