gpt4 book ai didi

html - 如何使

元素上升或居中于此空白区域(如图所示)

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

网站的 CSS 代码我也将这两个不同的元素放在 Div 中并且每个 img 都有一个填充因此它不会从上方或下方粘在 div 边框上 /image/B2xfD.png

h2{
font-family: anteb;
text-align: center;
border: solid 0.4vw black;
width: 15%;
margin: auto;
margin-bottom: 5px;
padding: .5%;
white-space: nowrap;
overflow: hidden;
font-size: 2vw;
}
#thecont>img , #end{
width: 70%;
display:block;
margin:auto;
text-align: center;
padding: 5%;

最佳答案

要使元素垂直和水平居中,您可以使用 flexbox 属性。对于要居中的元素的外容器,

.outerContainer{
display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
display: -ms-flexbox; /* TWEENER - IE 10 */
display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
display: flex;
justify-content:center;/* horizontal centering*/
align-items:center; /* vertical centering */
flex-direction:column; /* for making your child elements comes one after another in new lines*/
height:200px;
width:300px;
}

关于html - 如何使 <h2> 元素上升或居中于此空白区域(如图所示),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51472137/

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