gpt4 book ai didi

html - 使用 CSS 使图像位于文本后面并使其居中

转载 作者:技术小花猫 更新时间:2023-10-29 12:17:06 25 4
gpt4 key购买 nike

我正在创建一个网页,我想在其中放置一张图片。在该图像的顶部,我想要输入框、标签和提交按钮。

我正在尝试使用这个 CSS

img.center
{
z-index:-1;
}

但这行不通。当我将代码更改为

img.center
{
position:absolute;
left:0px;
top:0px;
z-index:-1;
}

它使图像落后。但是当我使用 left:0px 时和 top:0px ...它将图像放在位置 0,0。但我希望图像位于中心。

为了让图片居中,我添加了这个:<div align="center"> .

有什么办法可以让图像保持在中心位置,并使其也位于框、标签和按钮后面?

我的 HTML 页面看起来像这样(我试图为我的 div 标签添加背景图片,但上面没有图片):

<html>
<head>
<title>Question of the Week</title>
<style type="text/css">
body
{
background-image:url('images/background.jpg');
background-repeat:repeat-x;
}

.container
{
background-image:url('images/center.jpg');
background-repeat:no-repeat;
}
td.cntr {padding-top:50px;}
</style>
</head>
<body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0">

<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><div align="left"><img src="images/logo.jpg"></div></td>
<td></td>
<td><div align="right"><img src="images/right_logo.jpg"></div></td></tr>
</table>
</tr>
<tr>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td class="cntr">
<div id="container">
<input name="box" type="textbox" />
<input name="box" type="textbox" />
<input name="submit" type="submit" />
</div>
</td>
</tr>
</table>
</tr>
</table>
</body>
</html>

最佳答案

您可以使用 position:absoluteposition:relative 定位图像和文本。然后 z-index property将工作。例如

#sometext {
position:absolute;
z-index:1;

}
image.center {
position:absolute;
z-index:0;
}

使用您喜欢的任何方法使其居中。

另一种选择/技巧是将图像作为背景,在整个页面上或仅在文本框中。

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

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