【发布时间】:2016-09-01 11:51:29
【问题描述】:
前端开发新手。我一直试图通过反复试验来修复这个错误,但无济于事。当我检查我的页面时,一切看起来都很好。当我在我的美孚手机上测试我的页面时,我在背景图片的右侧看到了这个黑条,并且我的个人资料图片偏离了中心。 “封面图片;” “背景尺寸”为灰色 -
这是我的 html 代码:
<div class="container-fluid">
<div class="cover-image">
<div class="quote">
"Prepare Today For The Wants of Tomorow." <br>- <span style="font-size: .65em;">Aesop</span>
</div>
</div>
<div class="container-fluid">
<div id="about" class="row">
<div id="profile-pic" class="col-md-5 col-md-push-1 col-xs-8 rounded-img text-center">
<div id="text-content">Circuit de Catalunya Montmelo<br>Barcelona, Spain</div>
</div>
<div id="about-content" class="col-md-7 col-md-push-2 col-xs-12">
我的 CSS 代码:
.cover-image {
position: relative;
z-index: 1;
background: #D3D3D3 url("../images/surfers.jpeg");
background-position:center;;
background-size: cover-image;
background-repeat: no-repeat;
width: 105%;
height: 500px;
overflow: hidden;
padding: 0;
opacity: 0.9;
}
【问题讨论】: