Created
November 16, 2017 04:31
-
-
Save shimar/40dbda00fe983814bbfc6f1d4923db04 to your computer and use it in GitHub Desktop.
html layout with fixed navbar, sidebar and main content.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<style type="text/css"> | |
html, body { | |
padding: 0; | |
margin: 0; | |
width: 100%; | |
} | |
body { | |
background-color: white; | |
} | |
#wrapper { | |
height: 100%; | |
position: relative; | |
} | |
.navbar { | |
background-color: blue; | |
left: 200px; | |
height: 30px; | |
position: fixed; | |
top: 0; | |
width: 100%; | |
} | |
.sidebar-wrapper { | |
height: 100%; | |
left: 0; | |
position: fixed; | |
top: 0; | |
width: 200px; | |
} | |
.sidebar { | |
background-color: green; | |
height: 100%; | |
} | |
.main-wrapper { | |
margin-left: 200px; | |
margin-top: 30px; | |
} | |
.main { | |
background-color: pink; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="wrapper"> | |
<nav class="navbar"> | |
Navbar | |
</nav> | |
<div class="sidebar-wrapper"> | |
<div class="sidebar"> | |
Sidebar | |
</div> | |
</div> | |
<div class="main-wrapper"> | |
<div class="main"> | |
Main | |
</div> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment