美文网首页
Responsive Web Design

Responsive Web Design

作者: RoyTien | 来源:发表于2017-06-16 12:05 被阅读9次

    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>
    

    相关文章

      网友评论

          本文标题:Responsive Web Design

          本文链接:https://www.haomeiwen.com/subject/mbnpqxtx.html