我使用的是Bootstrap,图像为1920x1280。它目前只响应大约1000像素的宽度并停止从那里收缩。宽度低于1000像素,它开始切断图像的一侧。我需要在任何设备上都能看到完整的图像。我通过CSS后台网址添加图片。有没有解决的办法。添加了以下相关代码。图像放在ID'介绍'中。
图像
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);
}
}
答案 0 :(得分:1)
background-size:cover; 尝试填充所有背景空间,以便截止图像边缘。如果您完全展示图片而未将背景尺寸设置为包含。
background: url(../img/intro-bg.jpg) no-repeat right bottom scroll;
background-color: #31f1fd;
-webkit-background-size: contain;
-moz-background-size: contain;
-o-background-size: contain;
background-size: contain;
答案 1 :(得分:0)
请尝试此风格而不是您的ID简介。有两种方法。一个是高度和宽度固定的,另一个没有宽度和高度。
#intro{
width: 100%;
height: 400px;
background-image: url('../img/intro-bg.jpg');
background-size: 100% 100%;
border: 1px solid red;
}
或
#intro{
background-image:url('../img/intro-bg.jpg');
background-repeat:no-repeat;
background-size:contain;
background-position:center;
}