Responsive Web Design
2017-06-16 本文已影响9人
RoyTien
The template of CSS
<style>
/* For mobile phones: */
.content{
}
/* For tablets: */
@media only screen and (min-width: 600px) {
.content{
}
}
/* For desktop: */
@media only screen and (min-width: 768px) {
.content{
}
}
</style>