blob: 096dd6c3ea2be42117fcdd2a39dc50a6a9241368 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<style>
#block { page-break-inside: avoid; }
span { padding-left: 1px; }
#columns { columns: 0px; column-gap: 0; )
</style>
<body>
There word 'Hello' should appear below.
<div id="columns">
H
<div id="block">
<span> <!-- Just need an inline with nonzero width -->
<div style="padding-left: 1ch"> ello</div>
</span>
</div>
</div>
</body>
|