gpt4 book ai didi

html - 设计一个元素以组合输入和发送按钮

转载 作者:太空宇宙 更新时间:2023-11-03 18:20:37 26 4
gpt4 key购买 nike

所以当我的设计师执行以下操作时,我偶然发现了这个任务......我不知道该怎么做

enter image description here

我认为我唯一的想法是让图像成为背景,然后让输入成为无样式的,或者什么的……老实说,我不知道如何解决它,我试过这样的事情:

<!DOCTYPE html>
<html>
<head>
<title></title>
<style>
.formish {
width: 308px;
height: 46px;
background: url('btn2.png');
background-repeat: none;
position: relative;
}

.formish .btn {
position: absolute;
right: 3px;
top: 1px;
width: 60px;
height: 42px;
border: 0;
background: none;
color: none;
}
</style>
</head>
<body>
<form class="formish">
<input type="email" value="">
<input type="submit" class="btn" value="">
</form>
</body>
</html>

它有点工作,无法让文本字段正常工作。无法弄清楚如何将图像添加到 jsfiddle,所以这是按钮本身:

enter image description here

提前致谢

最佳答案

尝试这样的事情, FIDDLE

CSS

    .formish {
width: 202px;
background: red;
background-repeat: none;
padding:5px;
}

.formish .btn {
color: white;
background: transparent;
border:1px solid white;
}
.formish .btn {
color: white;
background: transparent;
border:1px solid white;
}
.formish .input {
border:none;
}

HTML

 <form class="formish">
<input type="email" value="" class="input">
<input type="submit" class="btn" value="Send">
</form>

关于html - 设计一个元素以组合输入和发送按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21907092/

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