blob: f81602a111e503d1e356c9380a2e4204246cb007 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
div { page-break-inside: avoid; }
div:first-letter { float: right; }
</style>
<script>
function boom()
{
var d = document.getElementById('d');
d.firstChild.remove();
}
</script>
</head>
<body onload="boom();">
<div id="d">‫</div>
</body>
</html>
|