Hiding Elements only Visually: iOS Peculiarities Alternative
The total time is 1 hour 22 minutes.
Code
<p>
<span aria-hidden="true">The total time is 1:22".</span><span class="visually-hidden">The total time is 1 hour 22 minutes.</span>
</p>
.visually-hidden {
position: absolute;
width: 1px;
height: 1px;
overflow: hidden;
left: -10000px;
}
NIL