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
/** | |
* Responsive blog layout oefening | |
*/ | |
article { | |
display: inline-block; | |
vertical-align: top; | |
} | |
nav li { | |
display: block; |
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
/** | |
* Inline-block not done | |
*/ | |
* { | |
box-sizing: border-box; | |
} | |
article { | |
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
/** | |
* Inline-block done | |
*/ | |
* { | |
box-sizing: border-box; | |
} | |
article { | |
display: inline-block; |
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
/** | |
* Positioning not done | |
*/ | |
* { | |
box-sizing: border-box; | |
} | |
article { | |
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
/** | |
* Positioning done | |
*/ | |
* { | |
box-sizing: border-box; | |
} | |
article { | |
position: absolute; |
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
/** | |
* Floating not done | |
*/ | |
* { | |
box-sizing: border-box; | |
} | |
article { | |
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
/** | |
* Floating done | |
*/ | |
* { | |
box-sizing: border-box; | |
} | |
article { | |
width: 50%; |
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
/** | |
* Attribute selectors and bling oefening | |
Opdracht: | |
Vervang alle … door de juiste selector of combinatie. | |
De omschrijving staat er telkens boven | |
*/ | |
/* Dit blok geldt voor alle input-elementen */ | |
… { |
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
/** | |
* Attribute selectors and bling | |
*/ | |
fieldset { | |
border: 0; | |
border-radius: 1em; | |
box-shadow: 0 0 1em currentColor; |
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
/** | |
* Child selectors en sibling combinators oefening | |
Opdracht: | |
Vervang alle … door de juiste selector of combinatie. | |
De omschrijving staat er telkens boven | |
*/ | |
body { | |
background: #fff; | |
font: 100%/1.5 georgia; |