Last active
August 29, 2015 14:22
-
-
Save brgnepal/4580c0c10c262a95f958 to your computer and use it in GitHub Desktop.
Split div into three equal parts: snippet 2
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
<div id="main_div"> | |
<div id="left_pane"> | |
<div id="first_left_pane"> | |
<!-- your left content goes here --> | |
</div> | |
<div id="second_left_pane"> | |
<!-- your middle content goes here --> | |
</div> | |
</div> | |
<div id="right_pane"> | |
<!-- your right content goes here --> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment