Bonsoir,
J'ai tenté d'ajouter transition: 0.5s; mais ça ne fonctionne pas
Mon code :
J'ai tenté d'ajouter transition: 0.5s; mais ça ne fonctionne pas
Mon code :
.infobulle {
position: relative;
cursor: help;
border-radius: 50%;
}
.infobulle:hover::after, .infobulle:focus::after {
content: attr(aria-label);
position: absolute;
top: -5em;
left: 50%;
transform: translateX(-50%);
z-index: 1;
white-space: nowrap;
padding: 5px 14px;
background: rgba(0, 105, 151, 0.79);
color: #fff;
border-radius: 2px;
font-size: 1.5rem;
}
[aria-label]:hover:before, [aria-label]:focus:before {
content: "?";
position: absolute;
top: -1.7em;
left: 50%;
transform: translateX(-50%);
font-size: 20px;
color: rgba(0, 105, 151, 0.79);
}
[aria-label]:focus {
outline: none;
}
.infobulle {
display: inline-flex;
justify-content: center;
align-items: center;
margin: 0 .2em;
width: 1.2em;
height: 1.2em;
color: #413219;
font-size: 3rem;
text-align: center;
text-decoration: none;
}