我正在使用还指定了背景图像的表单字段顶部的透明颜色叠加层。
我遇到的问题是颜色叠加或背景图像位于表单顶部并阻止对表单字段的访问。
.frame {
background: url(http://lorempixel.com/g/400/200) no-repeat;
width: 200px;
padding: 50px 80px;
position: relative;
}
.frame:after {
background: rgba(0,0,0,0.3);
content: '';
top: 0;
right: 0;
bottom: 0;
left: 0;
position: absolute;
}
我在这里遇到过关于透明度background-image
和background-color
透明度的组合使用的类似问题,但我想我的情况与正在使用的表单字段有点不同。
如果您有兴趣,这是我的JSFiddle 。