Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 539 Bytes

File metadata and controls

24 lines (19 loc) · 539 Bytes

EXAMPLES

view correctly on smartphone:

make text only visible when using accessibility:
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}

make sure js loaded after html has fully loaded :
$(document).ready(function() {});

README.md