Skip to content

Instantly share code, notes, and snippets.

View thefathdev's full-sized avatar
🛵
What's up?

Fathul Irfaan Abdillah thefathdev

🛵
What's up?
View GitHub Profile
@ffoodd
ffoodd / improved-sr-only.markdown
Last active April 14, 2026 08:25
Improved .sr-only

Improved .visually-hidden

Theorically bulletproof CSS class for visually hide anything and keep it accessible to ATs.

A Pen by ffoodd on CodePen.

License.

@thevangelist
thevangelist / convert-to-kebab-case.js
Created September 21, 2016 10:11
JS: convert to kebab-case
const convertToKebabCase = (string) => {
return string.replace(/\s+/g, '-').toLowerCase();
}