mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-02 13:58:40 +09:00
16 lines
244 B
HTML
16 lines
244 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<style>
|
||
|
|
.f:first-letter {
|
||
|
|
float: left;
|
||
|
|
}
|
||
|
|
.f {
|
||
|
|
page-break-inside: avoid; float: left;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body onload="document.getElementById('p').className = '';">
|
||
|
|
<p id="p" class="f">text</p>
|
||
|
|
</body>
|
||
|
|
</html>
|