继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

css响应式布局原理

慕田峪0738999
关注TA
已关注
手记 344
粉丝 88
获赞 493

  1. 移动设备优先:

    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
  2. 媒体标签:

    @media screen and (min-width: 100px){    div{        width: 100px;        height: 1000px;        background: yellow;    }}
  3. 完整代码:

    <!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><title>Document</title><meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"><style>@media screen and (min-width: 100px){    div{        width: 100px;        height: 1000px;        background: yellow;    }}@media screen and (min-width: 500px){    div{        width: 500px;        height: 1000px;        background: blue;    }}@media screen and (min-width: 800px){    div{        width: 800px;        height: 1000px;        background: black;    }}</style></head><body><div></div></body></html>


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP