Skip to content

Instantly share code, notes, and snippets.

@jomurgel
jomurgel / css-units-best-practices.md
Created November 24, 2020 15:27 — forked from basham/css-units-best-practices.md
CSS Units Best Practices

CSS units

Recommendations of unit types per media type:

Media Recommended Occasional use Infrequent use Not recommended
Screen em, rem, % px ch, ex, vw, vh, vmin, vmax cm, mm, in, pt, pc
Print em, rem, % cm, mm, in, pt, pc ch, ex px, vw, vh, vmin, vmax

Relative units

Relative units

@jomurgel
jomurgel / .htaccess
Last active May 14, 2018 01:09
Installing Let's Encrypt with Cerbot on DigitalOcean & ServerPilot
## Redirect all HTTP and www to HTTPS
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
RewriteCond %{HTTPS} !=on
RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L]