美文网首页
图片不拉伸、全屏宽、居中显示的方法

图片不拉伸、全屏宽、居中显示的方法

作者: Cherry丶小丸子 | 来源:发表于2019-07-08 16:06 被阅读0次
<html>
<head>
    <title>Title</title>
    <style>
        *{ margin:0; padding: 0; }
        /*图片方法*/
       .bannerbox {
            width:100%;
            position:relative;
            overflow:hidden;
            height:410px;
            margin-bottom: 50px
        }
        .banner {
            position:absolute;
            left:50%;
            margin-left: - 图片宽度一半;
        }

        /*背景方法*/
        .banner1{
            background: url(./1.jpg) no-repeat center center;
            height: 410px;
        }
    </style>
</head>
<body>
    <!-- 图片方法 -->
    <div class="bannerbox">
        <div class="banner">
            <img src="1.jpg">
        </div>
    </div> 

    <!-- 背景方法 -->
    <div class="bannerbox1">
        <div class="banner1"></div>
    </div> 
</body>
</html>

相关文章

网友评论

      本文标题:图片不拉伸、全屏宽、居中显示的方法

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