gpt4 book ai didi

php - 有电子邮件表格的背景图片吗?

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

我创建了一个电子邮件表单,我有一张图片我想作为整个表单的背景。我尝试过使用 CSS background-image 以及使用 html 来使用背景图像。

我找到的所有教程都只向我展示了如何将图像作为实际的文本框(即搜索表单内的放大镜)。我希望图像位于整个表格的后面。

我的代码当前生成的内容:http://testing.egfederation.com/contact/contact.php

我的 HTML

<div id = "contentwrap"><div class = "contact">
<img src="CSS/Bracket.png">
<form method="post" action="<?php echo $_SERVER["PHP_SELF"];?>">
<input type ="text" name = "message" placeholder="Full Name"> <br>
<input type="text" name="from" placeholder="Email Address"><br>
<input type="text" name="subject" placeholder="Subject"><br>
<textarea rows="10" cols="35" name="message" placeholder="Please Enter your message here."></textarea><br>
<input type="submit" name="submit" value="Submit">
</form></div> </div>

我的 CSS

.contact {

height:600px;
width:800px;
margin-left:auto;
margin-right:auto;
}
#contentwrap {
float:right;
}

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

最佳答案

试试这个:

div#contentwrap{
background-image:url("image URL here");
background-repeat:; /* if you need it */
background-size:; /* if you need it */
}

如果您想了解更多信息,W3Schools在 CSS 背景上有一些非常有用的页面。

关于php - 有电子邮件表格的背景图片吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24680774/

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