Created
September 25, 2008 19:43
-
-
Save collin/12921 to your computer and use it in GitHub Desktop.
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
<html> | |
<head> | |
<title>now... With jQuery</title> | |
<script src='javascripts/jquery-1.2.3.pack.js?'></script> | |
<script src='jquery.border_layout-0.0.0.js?'></script> | |
<style> | |
#document { | |
width: 250px; | |
background-color: pink; } | |
#canvas #button-strip { | |
background-color: black; | |
height: 40px; } | |
#canvas #preview { | |
background-color: orange; } | |
#styles { | |
width: 250px; | |
background-color: #ccccff; } | |
#bottom { | |
height: 100px; | |
background-color: #ffccff; } | |
#right { | |
width: 100px; | |
background-color: #ffffcc; } | |
#left { | |
width: 100px; | |
background-color: #777777; } | |
</style> | |
</head> | |
<body class='border-layout'> | |
<div class='west split tree' id='document'></div> | |
<div class='center border-layout' id='canvas'> | |
<div class='north split' id='button-strip'></div> | |
<div class='west split' id='left'></div> | |
<div class='east' id='right'></div> | |
<div class='center' id='preview'></div> | |
</div> | |
<div class='east split' id='styles'></div> | |
<div class='south split' id='bottom'></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment