gpt4 book ai didi

html - 使用带有输入文本和提交按钮的 CSS3 和 HTML 的图像效果

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

我的登录屏幕图像如下所示:

Login Image

有什么方法可以仅使用 CSS3 和 HTML5 创建相似的图像吗?“用户名:”和“密码:”之后的下划线是无边框的输入类型=“文本”(因此用户可以输入文本)

登录是按钮。所有这些字段都放在 HTML 表单中。

最佳答案

您可以这样设置元素的样式:

#box { /* Container box */
width:450px;
padding:50px;
background:#463; /* set image here */
}
#usr, #pwd { /* input boxes */
border:none;
border-bottom:3px solid white;
background:transparent;
color:#fff;
font:bold 24px sans-serif;
}
#box > div { /* container for lines (label + input) */
margin-bottom:26px;
}
#box > div > label,
#box > button {
color:#fff;
font:bold 24px sans-serif;
}
#box > button { /* A simple button */
background:transparent;
border:none;
text-align:center;
color:#ff0;
width:100%;
}

一些虚拟的 html:

<div id="box">
<div>
<label for="usr">Username:</label>
<input id="usr">
</div>
<div>
<label for="pwd">Password:</label>
<input id="pwd" type="password">
</div>
<button id="login">Login</button>
</div>

Online demo here

Board snap

只需将板的背景替换为您正在使用的图像,并使用实际字体即可。

关于html - 使用带有输入文本和提交按钮的 CSS3 和 HTML 的图像效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19595906/

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