CSS делает текст прозрачным
.text
{
font-family: Garamond, serif;
font-size: 12px;
color: rgba(0, 0, 0, 0.5);
}
DevLorenzo
.text
{
font-family: Garamond, serif;
font-size: 12px;
color: rgba(0, 0, 0, 0.5);
}
.div{
opacity: 0.8; /* 1 means fully visible, 0 means invisible */
}