blob: 201213944c735ca837b4d361c1fe94fcc9ecb1ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!doctype html>
<title>CSS Test reference</title>
<style>
input { -moz-appearance: none; -webkit-appearance: none; appearance: none; }
</style>
<div style="column-count: 2">
a<br>
<input>
<div style="page-break-inside: avoid; break-inside: avoid;">
b
<div><input id="editme" value="Am I clipped?"></div>
</div>
</div>
|