removeNonASCII
Removes non-printable ASCII characters.
Use a regular expression to remove non-printable ASCII characters.
1 | const removeNonASCII = str => str.replace(/[^\x20-\x7E]/g, '') |
1 | removeNonASCII('äÄçÇéÉêlorem-ipsumöÖÐþúÚ'); // 'lorem-ipsum' |
Constant width to height ratio
iven an element of variable width, it will ensure its height remains proportionate in a responsive fashion (i.e., its width to height ratio remains constant).
html
1 | <div class="constant-width-to-height-ratio"></div> |
css
1 | .constant-width-to-height-ratio { |
description
padding-top on the ::before pseudo-element causes the height of the element to equal a percentage of its width. 100% therefore means the element’s height will always be 100% of the width, creating a responsive square.
This method also allows content to be placed inside the element normally.
browser support
✅ No caveats.