문제

i try to make a container for my site in google site that will be transparent so that the background image will be visible.

i guess opacity property of css3 is not supported by google sites, so is there any other way to do that? thanx i tried

filter: alpha (opacity=50); -moz-opacity: 0.50; opacity: 0.50; -khtml-opacity: 0.5; but it's not recognized.

WARNING: Your HTML contains some tags that are not permitted. These have been removed from your changes.

도움이 되었습니까?

해결책

If it allows you you can do that by applying a semi-transparent 1px x 1px .png image to the background of your container.

.yourContainer {
background:transparent url(myTransparentImage.png) repeat;
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top