Skip to content

Instantly share code, notes, and snippets.

@alexeyten
Created March 14, 2012 07:39
Show Gist options
  • Save alexeyten/2034888 to your computer and use it in GitHub Desktop.
Save alexeyten/2034888 to your computer and use it in GitHub Desktop.
3 to 2 col
/**
* 3 to 2 col
*/
html {
min-width: 800px;
}
.main {
margin: 0 150px 0 200px;
height: 500px;
background: #afa;
}
.orange {
width: 200px;
height: 350px;
background: #fa6;
float: left;
}
.black {
width: 150px;
height: 200px;
background: #666;
float: right;
}
@media screen and (max-width:1000px) {
.main {
margin-right: 0;
}
.black {
width: 200px;
float: left;
clear: left;
}
}
<div class="orange"></div>
<div class="black"></div>
<div class="main"></div>
{"view":"separate","seethrough":"","prefixfree":"1","page":"result"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment