mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
17 lines
231 B
HTML
17 lines
231 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
.f:first-letter {
|
|
float: left;
|
|
}
|
|
.f {
|
|
page-break-inside: avoid;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body onload="document.getElementById('p').className = '';">
|
|
<p id="p" class="f">text</p>
|
|
</body>
|
|
</html>
|