Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试在谷歌网站中为我的网站制作一个透明的容器,以便背景图像可见。
我猜 google 网站不支持 css3 的 opacity 属性,那么有没有其他方法可以做到这一点?谢谢我试过
过滤器:阿尔法(不透明度=50);-moz 不透明度:0.50;不透明度:0.50;-khtml-不透明度:0.5;但它不被认可。 警告:您的 HTML 包含一些不允许的标签。这些已从您的更改中删除。
过滤器:阿尔法(不透明度=50);-moz 不透明度:0.50;不透明度:0.50;-khtml-不透明度:0.5;但它不被认可。
警告:您的 HTML 包含一些不允许的标签。这些已从您的更改中删除。
如果允许,您可以通过将半透明的 1px x 1px .png 图像应用到容器的背景来做到这一点。
.yourContainer { background:transparent url(myTransparentImage.png) repeat; }