码迷,mamicode.com
首页 > 其他好文 > 详细

屏幕适配

时间:2019-09-26 09:48:42      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:margin   class   view   device   html   屏幕   style   title   desc   

<!DOCTYPE html>
<html lang="en">

<head>
    <!-- 设置网页编码 -->
    <meta charset="UTF-8">
    <!-- 设置网页关键字 -->
    <meta name="keywords" content="">
    <!-- 设置网页描述 -->
    <meta name="description" content="">
    <!-- 设置网页不能出现缩放效果 
        width=device-width:  让盒子的宽度与当前设备一样宽,
        initial-scale=1;  禁止缩放
        禁止用户手动缩放(有些移动设备浏览器,还会支持,有些浏览器不支持)
        user-scalable=no
    -->
    <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
    <title>Document</title>
    <style type="text/css">
        * {
            margin: 0;
            padding: 0;
        }
        .box {
            width: 100%;
            height: 200px;
            background-color: red;
        }
    </style>
</head>

<body>
    <div class="box">萨达撒旦法撒旦法</div>
    <!-- <video></video> -->
    <!-- 最理想的网页布局: -->
    <!-- 1. 让盒子宽度与设备宽一样  -->
    <!--   width: 100%; -->
    <!-- 2. 网页布局中不能出现缩放效果 通过 meta标签设置-->
    <!-- 总结: 使用流式布局实现页面适配的步骤 
        1. 保证宽度等于设备宽
            width: 100%;
        2. 保证页面中不能出现缩放效果
        <meta name="viewport"  content="width=device-width, initial-scale=1, user-scalable=no">
    -->
</body>
</html>

屏幕适配

标签:margin   class   view   device   html   屏幕   style   title   desc   

原文地址:https://www.cnblogs.com/divtab/p/11588670.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!