gpt4 book ai didi

html - 使用 CSS 在顶部和中间放置一个 DIV

转载 作者:太空宇宙 更新时间:2023-11-04 14:23:41 25 4
gpt4 key购买 nike

到目前为止我有这个:

<style>
#success_notification {
position:absolute;
top:0;
width:30%;
text-align:center;
font:20px Georgia;
color:#5C5C5C;
background:#F2FFED;
padding:10px;
}

</style>

<div style="margin:0 auto;"><div id='success_notification'>TESTING.</div></div>

并且 div 保持在左侧......仍然。我究竟做错了什么?谢谢。

最佳答案

您没有设置 leftright,导致您的绝对定位元素默认为 left 0。试试这个:

#success_notification {
position: absolute;
top: 0;
left: 35%;
width: 30%;
text-align: center;
font: 20px Georgia;
color: #5C5C5C;
background: #F2FFED;
padding: 10px;
}

关于html - 使用 CSS 在顶部和中间放置一个 DIV,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5412144/

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