我使用Bootstrap並具有圖像1920x1280。它目前只能響應1000px左右的寬度,並停止從那裏收縮。寬度低於1000像素,它開始切斷圖像的一側。我需要在任何設備上顯示完整圖像。我通過CSS背景網址添加圖片。有沒有解決的辦法。添加了下面的相關代碼。圖像被放置在ID'intro'中。圖像不完全響應
圖片
HTML
<div id="intro">
<div class="intro-body">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<h1 style="color: #000000">Title<span class="brand-heading">Quote</span></h1>
<p style="color: #000000" class="intro-text">Short description</p>
<a href="#about" class="btn btn-default page-scroll">Learn More</a> </div>
</div>
</div>
</div>
</div>
CSS
#intro {
display: table;
width: 100%;
height: auto;
padding: 100px 0;
text-align: center;
color: #fff;
background: url(../img/intro-bg.jpg) no-repeat center center fixed;
background-color: #000;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#intro .intro-body {
display: table-cell;
vertical-align: middle;
}
#intro .intro-body H1 {
font-size: 76px;
font-weight: 700;
color: rgba(255,255,255,0.8);
text-transform: uppercase;
}
@media(min-width:768px) {
#intro {
height: 100%;
padding: 0;
}
#intro .intro-body .intro-text {
font-size: 18px;
letter-spacing: 1px;
margin-bottom: 100px;
color: rgba(255,255,255,0.9);
}
}
以下只是一個說明,並沒有任何與你的問題:3位十六進制顏色值都在一些老版本的IE瀏覽器的越野車。 – Pyromonk