gpt4 book ai didi

css - 创建类似 Zoho CRM 表单的 CSS

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

请通过链接告诉我如何创建类似 Zoho CRM 的表单。可以使用 CSS 完成吗? https://crm.zoho.com/crm/CreateEntity.do?module=Contacts提前致谢。

最佳答案

我假设你问的是文本输出方法,这里是获取它的方法..

HTML:

  <div>
<input type="text" class="inputText" required/>
<span class="floating-label">Your email address</span>
</div>

CSS:

input:focus ~ .floating-label,
input:not(:focus):valid ~ .floating-label{
top: 0px;
bottom: 10px;
left: 20px;
font-size: 6px;
opacity: 1;
}

.inputText {
font-size: 14px;
width: 200px;
height: 35px;
}

.floating-label {
position: absolute;
pointer-events: none;
left: 20px;
top: 18px;
transition: 0.2s ease all;
}

关于css - 创建类似 Zoho CRM 表单的 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43653692/

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