mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
25 lines
583 B
HTML
25 lines
583 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<div style="display:table">
|
|
<div style="display: table-row">
|
|
<div style="display: table-cell">
|
|
First Column
|
|
</div>
|
|
<div style="display: table-cell">
|
|
Second Column
|
|
</div>
|
|
</div>
|
|
<div style="display: table-row">
|
|
<div style="display: table-cell">
|
|
First Column
|
|
</div>
|
|
<div style="display: -moz-popup; display: popup"></div>
|
|
<div style="display: table-cell">
|
|
Second Column
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|