gpt4 book ai didi

css - 如何让文本在 100% 宽的 div 上保持原位?

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

所以我的页面上有一个设置为 100% 宽度的标题,我想将文本放在横幅上并保持原位,但是当我放大和缩小时,文本的位置会发生变化。如何使文本保持在我设置的位置并且放大和缩小不影响它?

fiddle :jsfiddle.net/5ASJv/

html

<div id="wrap">
<div class="right">
Hey <br />
What is up <br />
</div></div>

CSS

* {
margin: 0 auto;
}

#wrap {
height: 150px;
width: 100%;
background: url(http://froggyadventures.com/wp-content/uploads/galleries/post-93/full/placeholder%20-%20Copy%20(2).gif) no-repeat center;
text-align: center;
background-color: #FFF;
}
.right{
width: 400px;
height: 110px;
position: relative;
z-index: 999;
top: 100px;
left: 100px;
}

最佳答案

试试这个:

* {
margin: 0 auto;
}

#wrap {
height: 150px;
width: 100%;
background: url(http://froggyadventures.com/wp-content/uploads/galleries/post-93/full/placeholder%20-%20Copy%20(2).gif) no-repeat center;
text-align: center;
background-color: #FFF;
position: relative;
}
.right{
width: 400px;
height: 110px;
position: absolute;
z-index: 999;
top: 100px;
left: 100px;
}

关于css - 如何让文本在 100% 宽的 div 上保持原位?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20262995/

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