blob: a982c472ffe803f4078276a7eb972faf321b2c2e (
plain)
1
2
3
4
5
6
7
|
<!DOCTYPE html>
<html>
<body onload="document.getElementById('t').style.display = 'block'">
<!-- Lack of space between the two spans is key -->
<span style="display: table-cell">First line</span><span style="display: none" id="t">Second line</span>
</body>
</html>
|