41 lines
769 B
HTML
41 lines
769 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<!--style>
|
|
html, body {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body > div {
|
|
display: table;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
#top {
|
|
display: table-row;
|
|
}
|
|
#left, #main, #right {
|
|
display: table-cell;
|
|
height: 100%;
|
|
border: 1px solid #ddd;
|
|
}
|
|
#left, #right {
|
|
width: 400px;
|
|
background-color: #eee;
|
|
}
|
|
</style-->
|
|
<link rel="stylesheet" href="/stylesheets/application.css">
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<div id="top">top</div>
|
|
<div id="left">left</div>
|
|
<div id="main">main</div>
|
|
<div id="right">right</div>
|
|
</div>
|
|
</body>
|
|
</html>
|