Daily Shaarli
September 11, 2022
A font meant for readability by the Braille Institute
Provide stats about the CSS on a page 👍
const { length, 0: first, [length - 1]: last } = arr;
A simple, extensible CSS framework
Vanilla Framework aims for Level AA conformance with the Web Content Accessibility Guidelines (WCAG) 2.1.
I was also struggling with it:
const multilineStrings = 'This is a\n' + 'multiline\n' + 'strings';
or
const multilineStrings = ['This is a', 'multiline', 'strings'].join('\n');
or
``const multilineStrings =
This is a
multiline
strings`;