HTML – 使文本输入框透明?应该简单吗?

前端之家收集整理的这篇文章主要介绍了HTML – 使文本输入框透明?应该简单吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在尝试使我的表单输入透明,并将其放在我的div之上.基本上我希望文本字段对其背后的任何内容都是透明的.有什么建议?

PHP">
        Box-10.png" alt="{alternate text}" name="submit" value="submit">
      
最佳答案
尝试:

#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;
}

DEMO here.

原文链接:https://www.f2er.com/html/426833.html

猜你在找的HTML相关文章