blob: 5899593d537f82813932d165303d933fd0b9696d (
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
25
|
<!DOCTYPE html>
<html>
<head>
<style id="ss" type="text/css">
div div:first-letter { font-size: 0%; }
</style>
<script type="text/javascript">
function boom()
{
document.getElementById("ss").textContent = "div div { height: 1px; }";
}
</script>
</head>
<body onload="boom();">
<div style="column-width: 1px; word-wrap: break-word;"><div>ABCDE</div></div>
</body>
</html>
|