Skip to content

Instantly share code, notes, and snippets.

@liveme
Last active August 29, 2015 13:57
Show Gist options
  • Save liveme/9680566 to your computer and use it in GitHub Desktop.
Save liveme/9680566 to your computer and use it in GitHub Desktop.
等高布局
/*
*@ Name: 等高布局
*@ Update: 2013-03-26
*@ Usage:
* <div class="main eq-wrap">
* <div class="content eq-bd">content</div>
* <div class="aside eq-bd">aside</div>
* </div>
*/
.eq-wrap {
overflow: hidden;
}
.eq-bd {
margin-bottom: -9999px;
padding-bottom: 9999px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment