Courses/Jouw Site op Kleine Schermpjes
From Publication Station
Revision as of 16:44, 7 January 2015 by Arjensuijker (talk | contribs)
Responsive Webdesign
Steps for Graceful Degradation:
1 Set the initial scaling:
<meta name="viewport" content="width=device-width; initial-scale=1.0">
2 Use CSS media queries to reposition or hide content
@media screen and (max-width: 560px) {
#content {
width: auto;
float: none;
}
}