gpt4 book ai didi

html - 无法使元素 (3) 在其他元素 (3) 之上居中,flexbox

转载 作者:行者123 更新时间:2023-11-28 00:12:21 25 4
gpt4 key购买 nike

我目前正在构建社区博客/网站 THPSBlog在使用 FlexBox 功能时,我将一个横幅拆分并创建为三个不同的部分

                          NEWS | MEDIA | COMMUNITY

这是一个横幅,上面有 3 个图标,下面你可以看到 3 个信息框我已经尝试了多种调整或对齐我的内容和元素的组合,但到目前为止,我无法在信息框顶部同时正确居中我的三个图标。

横幅

#flex-banner {
display: flex;
position: absolute;
width: 100%;
height: 60%;
justify-content: space-between;
align-items: baseline;
background-color: rgba(102, 102, 102, 0.308);
}

图标

.icon {
display: flex;
margin-bottom: 16px;
}

信息框

.box {
text-align: center;
margin-top: 12px;
}

iPhone 6S 的媒体查询

@media only screen 
and (min-device-width: 375px)
and (max-device-width: 667px)
and (-webkit-min-device-pixel-ratio: 2) {
.navbar {
justify-content: center;
align-content: flex-start;
display: flex;
height: auto;
}
.navbar ul {
display: block;
width: auto;
}
#flex-banner {
display: flex;
justify-content: center;
align-items: baseline;
height: 100%;
width: auto;
}
}

HTML

<!DOCTYPE html>
<html>
<div id="flex-banner">
<!-- 1ST BOX-->
<div class="box">
<img class="icon" src="icon-news.svg" alt="newsicon"/ width="125px">
<a href="https://drive.google.com/file/d/1SNivhvHi-4PjPDy1tob-91HYs3x3R_z9/view">
<img src="./customlevels-icon.png" width="250px"/></a>
<h3>100+ Custom Levels in ONE pack</h3>
</div>
<!-- 2ND BOX-->
<div class="box">
<img class="icon" src="./icon-media.svg" alt="thpsvideoicon" width="90px"/>
<iframe width="390" height="245" src="https://www.youtube.com/embed/uvW0lsyttKw"
frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<h3>Check tLT's pure ownage in their 2015 Team Video</h3>
</div>
<!-- 3RD BOX-->
<div class="box">
<img class="icon" src="./icon-community.svg" alt="thpscommunity" width="110px"/>
<a href="http://thpsx.com/cap-contest-8/">
<img src="./graveyard-scene.jpg" alt="graveyardtheme" width="400px" /></a>
<h3>Cap Contest #8 Theme: Graveyard</h3>
</div>
</div>
</body>
</html>

我想正确显示此信息,同一行内的 3 个居中图标和其他 3 个框元素上方。还在我的 iPhone 6S 上尝试这个,人像看起来还不错。 (它不是居中而是显示为一列,这很好)但景观变得更加困惑。干杯!

最佳答案

这应该可以解决问题。我还建议使用 Bootstrap。开始要简单得多。祝你好运!

#flex-banner {
justify-content: space-evenly;
align-items: center;
}

关于html - 无法使元素 (3) 在其他元素 (3) 之上居中,flexbox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55317157/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com