зеркало из https://github.com/mozilla/gecko-dev.git
17 строки
231 B
HTML
17 строки
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>
|