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>
上一篇 下一篇

猜你喜欢

热点阅读