mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
307 B
HTML
19 lines
307 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<style>
|
||
|
div::first-line { color: red; background-color: blue; font-size: 200%; text-transform: uppercase; }
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<div>
|
||
|
Line number one.<br/>Line number two.<br/>Line number three.
|
||
|
</div>
|
||
|
|
||
|
<div style="height: 50000px;">
|
||
|
<!-- to force a scrollbar -->
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
</html>
|