gpt4 book ai didi

HTML 居中内联 block

转载 作者:行者123 更新时间:2023-11-28 04:54:25 24 4
gpt4 key购买 nike

我试图将图像上方的文本居中,但似乎无论我做什么它都不会居中

我也尝试过使用 margin 0 auto 但这也没有帮助。

    #search_box {
width: 100%;
height: 450px;
position: relative;
text-align: center;
}

#search_box h1 {
display: inline-block;
width: 50%;
top: 180px;
color: white;
background-color: red;
position: absolute;
}
<div id="search_box">
<img src="images/background_search.jpg" alt="search_box_picture"/>
<h1>SOME TEXT</h1>
</div>

最佳答案

像这样吗?

#search_box {
width: 100%;
height: 450px;
position: relative;
text-align: center;
}

#search_box h1 {
display: block;
width: 50%;
top: 180px;
color: white;
background-color: red;
margin: auto;


}
<div id="search_box">
<h1>SOME TEXT</h1>
<img src="images/background_search.jpg" alt="search_box_picture"/>

</div>

关于HTML 居中内联 block ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40499880/

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