Last active
July 17, 2019 08:51
-
-
Save frontend-coder/55f2d9573e7900e55ea470fc1ff122e8 to your computer and use it in GitHub Desktop.
делаем прозрачный фон для всех браузеров #css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .prozrachnost { | |
| opacity:0.5; | |
| filter:alpha(opacity=50); | |
| -moz-opacity:0.5; | |
| background-color:#000000; | |
| width:340px; | |
| height:1500px; | |
| position:absolute; | |
| top:0px; | |
| left:0px; | |
| z-index:-1; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment