Skip to content

Instantly share code, notes, and snippets.

@Okkido
Okkido / ios-100vh-height-bug.css
Created September 9, 2020 18:04
Fix 100vh height bug in Safari
body {
height: 100vh;
}
/* Avoid Chrome to see Safari hack */
@supports (-webkit-touch-callout: none) {
body {
/* The hack for Safari */
height: -webkit-fill-available;
}
@Okkido
Okkido / designMode
Created October 13, 2017 14:17
designMode in Chrome Bookmarklet
javascript:(function()%7Bdocument.designMode%20%3D%20'on'%7D)()