(Why) Some HTML is "Optional" — A little look into why certain HTML tags (such as a closing </p> ) are optional — it mainly comes to down to historical backwards compatibility and an evolving approach to how syntax is written.
Remy Sharp
|
Image & Video Management Made for Front-End Developers — Simplify and automate the process of uploading, manipulating, optimizing, and delivering images and videos across every device at any bandwidth. Try Cloudinary. See how easy media management can be. Get your own free account today.
Cloudinary sponsor
|
Firefox Moving to a Faster 4-Week Release Cycle — It’ll only be a couple of years before we reach Chrome 100 and it seems Firefox wants a piece of the action :-) Firefox’s release cadence will be moving from approx 6-8 weeks per version to just 4 from Firefox 71 onward.
Mozilla Hacks
|
All 245 Entries in The 2019 JS13kGames Competition — We linked to the competition a few weeks back and now the fruits of everyone’s efforts are here to check out and play. Some very impressive results here considering the 13 kilobyte file size limit.
Andrzej Mazur
|
π Articles, Tutorials & Opinion
|
supported by
|
|
Using CSS to highlight images with no alt tags
If you're preparing a site for production it can be a good idea to have images call attention to themselves if they're lacking an alt attribute. This is a simple enough thing to do and is a helpful, visual way to check that your site is accessible.
To do this you'll need to make use of the CSS negation pseudo class :not() . This accepts a selector, such as alt , as an argument to check against.
The :not() selector will check if an image has an alt attribute specified, and if not, will trigger. The example below will turn any image lacking alternate text to grayscale.
|
img:not([alt]) {
filter: grayscale(100%);
}
|
|
π§ Code, Tools & Resources
|
Introducing 'Can I Email' — An idea heavily inspired by Can I Use, a popular index of Web features and their cross-browser support. Can I Email takes the same idea to what different email clients support.
Can I Email
|
Button Contrast Checker — A straightforward tool to test whether your buttons and links are compliant with WCAG 2.1 contrast guidelines.
Aditus
|
|
No comments:
Post a Comment