have simple hover class:
.logos:hover:before {
content: "For more details click here";
position: absolute;
color: #fff;
font-size: 18px;
bottom:10%;
left:5%;
background: #000;
}
<div class="logos"> Text </div>
This work fine, on hover element, I see text. Now,is there possibility to put text in to line like this :
For more details
click here
Tnx, P