我正在尝试使我的表单输入透明,并将其放在我的div之上.基本上我希望文本字段对其背后的任何内容都是透明的.有什么建议?
PHP">
Box-10.png" alt="{alternate text}" name="submit" value="submit">
最佳答案
尝试:
原文链接:https://www.f2er.com/html/426833.html#email {
background-color:rgba(0,0);
color:white;
border: none;
outline:none;
height:30px;
transition:height 1s;
-webkit-transition:height 1s;
}
#email:focus {
height:50px;
font-size:16px;
}