I want ".joffre-description" to appear on :hover for mobile devices, but clearly :hover on a touchscreen is impossible. Without JS, using only CSS, is there any hacks to turn ".joffre-description" into "opacity: 1" when I touch this initial property (opacity: 0)?
@media (max-width: 858px) {
.joffre-description {
top: 13rem;
position: absolute;
opacity: 0;
padding: 3rem;
height: 30rem;
background: rgba(247, 192, 138, .8);
}
.joffre-description:hover {
opacity: 1;
transition: 0.5s;
}