Created
December 23, 2014 11:43
-
-
Save mayeenulislam/be2f21d6961ccc55441e to your computer and use it in GitHub Desktop.
A responsive approach to 3 column layout with 2 sidebars in different formation
This file contains hidden or 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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Responsive Two Sidebar Layout - HTML and CSS</title> | |
<link rel="stylesheet" href="sidebar-content-sidebar.css"> <!-- disable/enable to test --> | |
<!-- <link rel="stylesheet" href="content-sidebar-sidebar.css"> --> <!-- disable/enable to test --> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="body-wrapper"> | |
<div id="content">CONTENT</div> | |
<aside id="left-sidebar">LEFT</aside> | |
</div> | |
<!-- /.body-wrapper --> | |
<aside id="right-sidebar">RIGHT</aside> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment