Skip to content

Instantly share code, notes, and snippets.

@jklm313
Created July 24, 2012 20:07
Show Gist options
  • Save jklm313/3172300 to your computer and use it in GitHub Desktop.
Save jklm313/3172300 to your computer and use it in GitHub Desktop.
Untitled
.calc-emulator {
width: 600px;
border-left: 200px solid transparent;
box-sizing: border-box;
/*visual*/
background: skyblue;
height: 280px;
}
.sidebar {
margin-left: -200px;
width: 200px;
float: left;
/*visual*/
height: 200px;
background: #222;
color: white
}
.content {
width: 100%;
/*visual*/
height: 200px;
background:orange;
}
<div class="calc-emulator">
<div class="sidebar">
200px / <br/>margin-left: -200px
</div>
<div class="content">
width: 100% - 200px
</div>
width: 600px, with a transparent left-border(width of .sidebar)
</div>
{"view":"separate","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment