Created
February 24, 2014 13:55
-
-
Save dimapaloskin/9188857 to your computer and use it in GitHub Desktop.
sidebar fake
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
<style> | |
html, body { | |
padding: 0; | |
margin: 0; | |
} | |
.work { | |
padding: 0; | |
margin: 0; | |
width: 100%; | |
background: red; | |
display: table; | |
} | |
.sidebar { | |
width: 13%; | |
float: left; | |
} | |
.content { | |
width: 87%; | |
padding: 0; | |
margin: 0; | |
float: right; | |
background: #f1f1f1; | |
} | |
</style> | |
<div class="work"> | |
<div class="sidebar"> | |
asdasd | |
</div> | |
<div class="content"> | |
asdasd<br />asd aas<br />asd dasd<br /> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment