Skip to content

Instantly share code, notes, and snippets.

@Simply1993
Simply1993 / image.html
Created November 20, 2018 09:27
High-DPI images, different image types & art direction use case
<!-- source: https://dev.opera.com/articles/responsive-images/ -->
<picture>
<source
media="(min-width: 1024px)"
srcset="opera-fullshot-1x.webp 1x,
opera-fullshot-2x.webp 2x,
opera-fullshot-3x.webp 3x"
type="image/webp">
<source
media="(min-width: 1024px)"
@Simply1993
Simply1993 / visuallyhidden.css
Created September 29, 2018 19:02
#2017 edition of .visuallyhidden
/*
https://allyjs.io/tutorials/hiding-elements.html
#2017 edition of .visuallyhidden
*/
.visuallyhidden:not(:focus):not(:active) {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
border: 0;