Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions plot blocks repeat.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
*{
outline: 1px dotted red;
}
#wrapper{
width: 950px;
background-color: silver;
margin: 0px auto;
padding-top: 30px;

}
#header{
min-height: 150px;
background-color: green;
margin: 0px 30px 30px 30px;
}
#navigation{
min-height: 300px;
width: 200px;
background-color: blue;
margin: 0px 30px 30px 30px;
display: inline-block;
vertical-align: top;
}
#main_content{
min-height: 400px;
width: 625px;
background-color: red;
padding: 15px;
margin-bottom: 30px;
display: inline-block;
vertical-align: center;
}
.subcontents{
min-height: 150px;
width: 180px;
background-color: yellow;
margin-bottom: 15px;
margin-right: 15px;
display: inline-block;
vertical-align: top;
}
#advertisement{
min-height: 150px;
width: 580px;
background-color: purple;
margin-top: 15px;
}
20 changes: 20 additions & 0 deletions plot blocks repeat.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>plot blocks retry!</title>
<link rel="stylesheet" type="text/css" href="plot blocks repeat.css">
</head>
<body>
<div id="wrapper">
<div id="header"></div>
<div id="navigation"></div>
<div id="main_content">
<div class="subcontents"></div>
<div class="subcontents"></div>
<div class="subcontents"></div>
<div id="advertisement"></div>
</div>
</div><!-- end of wrapper -->
</body>
</html>