gpt4 book ai didi

html - 使用CSS在背景图像中居中文本

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

我有一个背景图像在 <div> 中的网站具有另一个 <div> 的元素里面有文字的元素。由于文本发生变化,我需要将其动态居中。到目前为止我有这个,但它仍然是左对齐的:

<html>
<head>
<title>3D Text</title>
<script> sets the text dynamically</script>
<style>

#Layer {
width: 320px;
height: 480px;
position: absolute;
border-style: none;
top: 0px;
left: 0px;
z-index: 0;
}

#clock {
position: relative;
font-family: Helvetica Neue;
color: black;
font-size: 80px;
text-align: center;
opacity: 1;
float: left;
}

.stretch {
width:100%;
height:100%;
}




</style>

</head>

<body onload="onLoad()">

<div id="Layer"><img src="bg2.png" class="stretch"/></div>

<div id="clock">
<script language="JavaScript">setText(); setInterval("setText()", 1000 )</script>
</div>

</body>
</html>

最佳答案

您的时钟 div 不在 Layer div 内。

试试这个:

<html>
<head>
<title>3D Text</title>
<script> sets the text dynamically</script>
<style>

#Layer {
width: 320px;
height: 480px;
border-style: none;
background-image: url(bg2.png);
}

#clock {
font-family: Helvetica Neue;
color: black;
font-size: 10px;
text-align: center;
opacity: 1;
}

.stretch {
width:100%;
height:100%;
}




</style>

</head>

<body onload="onLoad()">

<div id="Layer">

<div id="clock">
12:00PM
</div>
</div>
</body>
</html>

关于html - 使用CSS在背景图像中居中文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5356545/

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