mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-31 03:51:38 +09:00
18 lines
307 B
HTML
18 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>
|