mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
695f80cd69
--HG-- extra : rebase_source : 2768fbfd11770d9f72edd70d7828b4f4f5ac9ae0
30 lines
459 B
HTML
30 lines
459 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
#table1 {
|
|
display: table;
|
|
height: 20px; width: 100px;
|
|
background-color: green;
|
|
margin-bottom: 40px;
|
|
}
|
|
#table2 {
|
|
display: table;
|
|
height: 20px; width: 100px;
|
|
background-color: red;
|
|
margin-bottom: 40px;
|
|
}
|
|
#table3 {
|
|
display: table;
|
|
height: 20px; width: 100px;
|
|
background-color: blue;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="table1"></div>
|
|
<div id="table2"></div>
|
|
<div id="table3"></div>
|
|
</body>
|
|
</html>
|