Skip to content

Instantly share code, notes, and snippets.

@hotoo
Created September 11, 2010 18:46
Show Gist options
  • Select an option

  • Save hotoo/575436 to your computer and use it in GitHub Desktop.

Select an option

Save hotoo/575436 to your computer and use it in GitHub Desktop.
div.pane{
border:1px solid #ddd; background:#eee none; padding:3px;
-moz-border-radius:4px; -khtml-border-radius:4px; -webkit-border-radius:4px; border-radius:4px;
}
div.pane h4{margin:0; padding:2px 5px;}
div.pane div.pane-bd{
border:1px solid #e6e6e6; background:#fff none;
padding:5px; min-height:240px; height:240px\9;
-moz-border-radius:4px; -khtml-border-radius:4px; -webkit-border-radius:4px; border-radius:4px;
}
#demo{width:500px;}
<div class="pane" id="demo">
<h4>title</h4>
<div class="pane-bd">
body
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment