mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-08 22:11:52 +00:00
16 lines
242 B
HTML
16 lines
242 B
HTML
|
<title>::first-letter and overflow</title>
|
||
|
<style>
|
||
|
|
||
|
div {
|
||
|
height: 3em; width: 8em;
|
||
|
padding: 3px;
|
||
|
background: yellow; color: black;
|
||
|
overflow: auto;
|
||
|
line-height: 1.0;
|
||
|
}
|
||
|
div::first-letter { font-size: 4em }
|
||
|
|
||
|
</style>
|
||
|
|
||
|
<div>Hello</div>
|