Skip to content

Instantly share code, notes, and snippets.

@changyuan
Created December 2, 2016 09:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save changyuan/02c14ca2aabc7107950d0056fa654522 to your computer and use it in GitHub Desktop.
Save changyuan/02c14ca2aabc7107950d0056fa654522 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<style>
.flex-container {
display: -webkit-flex;
display: flex;
-webkit-flex-flow: row wrap;
flex-flow: row wrap;
font-weight: bold;
text-align: center;
}
.flex-container > * {
padding: 10px;
flex: 1 100%;
}
.main {
text-align: left;
background: cornflowerblue;
}
.header {
background: coral;
}
.footer {
background: lightgreen;
}
.aside1 {
background: moccasin;
}
.aside2 {
background: violet;
}
@media screen and (min-width: 600px) {
.aside {
flex: 1 auto;
}
}
@media screen and (min-width: 800px) {
.main {
flex: 3 0px;
}
.aside1 {
order: 1;
}
.main {
order: 2;
}
.aside2 {
order: 3;
}
.footer {
order: 4;
}
}
</style>
</head>
<body>
<div class="flex-container">
<header class="header">头部</header>
<article class="main"><p>article</p></article>
<aside class="aside aside1">边栏 1</aside>
<aside class="aside aside2">边栏 2</aside>
<footer class="footer">底部</footer>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment