Created
March 15, 2012 00:01
-
-
Save SirPepe/2040556 to your computer and use it in GitHub Desktop.
Übung Adaptives Layout
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
/** | |
* Übung Adaptives Layout | |
*/ | |
body { padding: 2.5%; } | |
div { margin: 0 2.5% 2.5%; height: 80px; border-radius: 8px; } | |
/* Mittleres Layout */ | |
@media screen and (min-width: 500px){ | |
#bar { | |
float: left; | |
width: 20%; | |
} | |
#baz { | |
float: right; | |
width: 70%; | |
} | |
#bla { | |
float: left; | |
clear: left; | |
width: 20%; | |
} | |
#buh { | |
clear: both; | |
} | |
} | |
/* Maximal-Layout */ | |
@media screen and (min-width: 750px){ | |
#baz { | |
float: left; | |
width: 45%; | |
} | |
#bla { | |
float: right; | |
clear: none; | |
width: 20%; | |
} | |
} |
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
<div id="foo" style="background:red"></div> | |
<div id="bar" style="background:green"></div> | |
<div id="baz" style="background:blue"></div> | |
<div id="bla" style="background:yellow"></div> | |
<div id="buh" style="background:magenta"></div> | |
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
{"view":"split","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment