What is the use of content: "" in this code?
I am trying to make my background image transparent in css3 , using opacity. There is no direct way but this gets the job done. However i do not understand the use of content here.
body::after{
content: "";
background: url(image.jpg);
opacity: 0.4;
top: 0;
left: 0;
bottom: 0;
right: 0;
position: fixed;
z-index: -1;
}