1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>template2</title>
<style>
body {
width: 1024px;
height :768px;
}
header {
border : 5px solid red;
width : 655px;
height :140px;
}
nav {
border: 3px solid #222;
}
#leftbar {
float:left;
width: 175px;
height : 368px;
}
#rightbar {
float:right;
width: 175px;
height : 368px;
}
.solution1 {
overflow:hidden
}
.solution2 {
margin:0 181px
}
.solution3 {
width:662px;
margin:auto
}
#mainpanelbody{
width : 255px;
}
footer {
border : 5px solid green;
width : 255px;
}
</style>
</head>
<body>
<!--Left side bar-->
<nav id="leftbar" class="sidebar">
<h1>left</h1>
</nav>
<!--Right side bar-->
<nav id="rightbar" class="sidebar">
<h1>right</h1>
</nav>
<section id="mainpanel" class="solution1">
<header id="header">
<h1>I'm the header</h1>
</header>
<nav id="menu">
<h1>I'm the menu</h1>
</nav>
<section id="mainpanelbody">
<h1>I'm the body</h1>
</section>
<footer>
<h1>I'm the footer</h1>
</footer>
</section>
</body>
</html> |
Partager