background-img高度固定,圖片自適應


參考airbnb和hitour,得到以下demo,可以將圖片高度固定后,圖片自適應(特別適用於全屏的banner)

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
.x{
    width:100%;
    height:700px;
}
.x div{
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 100%;
    width: 100%;
    position: relative;
    background-position: center center;
    background-size: cover;
}
</style>
</head>
<body>
<div class="x">
    <div style="background-image:url(http://i1.sinaimg.cn/gm/j/i/2011-10-09/U1782P115T41D234876F1162DT20111009144235.jpg)"></div>
</div>
</body>
</html>

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM