gpt4 book ai didi

html - MaterializeCSS 行中的居中对齐元素

转载 作者:行者123 更新时间:2023-11-28 15:52:34 24 4
gpt4 key购买 nike

我正在尝试对齐使用 MaterializeCSS 创建的行中的容器图书馆。 The documentation似乎没有提及任何关于已在行内的居中对象的内容,所以我想我会在这里问。

当前代码:

<div class="container" style="width: 88%;height: 100%;max-width: 100%;margin: auto;">

<div class="row" style="width: 100%;height: 100%;">

<div class="col s6 center-align" id="extra-pic-container">
<img id="extra-pic" width="100%" src="img1.png">
</div>

<div class="col s6 center-align" id="extra-pic-container">
<img id="extra-pic" width="100%" src="img2.png">
</div>

<div class="col s6 center-align" id="extra-pic-container">
<img id="extra-pic" width="100%" src="img3.png">
</div>

</div>

这是目前的样子: enter image description here

我想要什么(草图): enter image description here

是否可以执行任何 CSS 魔法来实现这一点?

非常感谢。

最佳答案

可以考虑使用flex box技术

.flexbox {
display: flex;
flew-wrap: wrap;
justify-content: center;
align-items: center;
}
<div class="container" style="width: 88%;height: 100%;max-width: 100%;margin: auto;">

<div class="row" style="width: 100%;height: 100%;">

<div class="flexbox">

<div class="col s6 center-align" id="extra-pic-container">
<img id="extra-pic" width="100%" src="img1.png">
</div>

<div class="col s6 center-align" id="extra-pic-container">
<img id="extra-pic" width="100%" src="img2.png">
</div>

<div class="col s6 center-align" id="extra-pic-container">
<img id="extra-pic" width="100%" src="img3.png">
</div>
</div>

</div>

关于html - MaterializeCSS 行中的居中对齐元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50671682/

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