mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
8 lines
270 B
HTML
8 lines
270 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body onload="document.getElementById('t').style.display = 'block'">
|
|
<!-- 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>
|