Всем доброго дня! Можно ли в content вставить другой div? Например так:
.Urban:after{
content: '<div class="Ray">X</div><div class="Ray">Y</div><div class="Ray">Z</div>';
width: 400px;
height: 50px;
position: absolute;
z-index: 1;
left: 0;
right: 0;
bottom: 0;
margin: 0 auto -50px auto;
background-color: rgba(255,0,72,.9);
border-radius: 3px;
}
.Ray{
width: 40px;
height: 40px;
line-height: 40px;
font-family: Helvetica, sans-serif;
font-weight: 400;
font-size: 100%;
background-color: #000;
margin: 5px 0 0 5px;
border-radius: 3px;
text-align: center;
color: #FFF;
float: left;
}