我使用骨架网格& amp;重置css。我在容器中存在一些问题,我现在知道它与骨架有关。我在网站每个页面的顶部都有一个图像,每个图像底部有一个小部分,一端有一些文字和一个图标,我似乎无法正确定位。这就是它的外观 -
(背景图片不同,还有待添加的代理商/商家图片)
在我的编码版本上,我无法获得文字和版本。底部条带中的图标可正确定位到页面边缘。我尝试重建页面,首先没有reset.css,然后没有骨架,没有骨架,他们移动到边缘。但是,我更喜欢保留骨架网格,因为我使用它来定位网站上的大多数其他元素/部分。如何禁用/覆盖此特定部分的骨架规则?这是我现在的代码 -
HTML
<section id="home">
<a href="agency.html">Are you an agency?</a>
<a href="business.html">Or a business?</a>
<div class="container showreel">
<div class="seemore">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x" style="color:#fff"></i>
<i class="fa fa-chevron-down fa-stack-1x" style="color: #000000;"></i>
</span>
<p>SEE MORE</p>
</div>
<div class="seeour">
<p>SEE OUR SHOWREEL</p>
<i class="fa fa-play-circle fa-3x" aria-hidden="true"></i>
</div>
</div>
</section>
CSS
body {
width: 960px;
margin: 0 auto 0 auto;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.container {
margin: auto;
padding-left: 10px;
padding-right: 10px;
}
/* HOME PAGE */
section#home {
height: 400px;
max-width: 100%;
background: url(../images/homepagemain.jpg) center center no-repeat;
background-size: 960px;
background-position: center;
overflow: hidden;
position: relative;
}
.showreel {
height: 50px;
width: 960px;
position: absolute;
background-color: black;
bottom: 0;
padding: 0 30px;
justify-content: space-between;
}
.showreel, .showreel > div {
display: flex;
align-items: center;
}
.showreel p {
font-size: 15px;
font-weight: normal;
margin: 0;
color: #ffffff;
}
.showreel i {
color: #ffffff;
}
.seemore i {
margin-right: 30px;
}
.seeour i {
margin-left: 30px;
}
答案 0 :(得分:1)
只需添加以下css部分
更改此
.showreel, .showreel > div {
display: flex;
align-items: center;
}
到此
.showreel, .showreel > div.seemore {
display: flex;
align-items: center;
justify-content: flex-start;
flex:1;
}
.showreel, .showreel > div.seeour {
justify-content: flex-end;
flex:1;
display: flex;
align-items: center;
}
工作小提琴
<强> fiddle link 强>