Skip to content

Instantly share code, notes, and snippets.

@Zeta611
Created June 4, 2025 10:09
Show Gist options
  • Save Zeta611/30aa42148fad7087f6c758f839af5f2c to your computer and use it in GitHub Desktop.
Save Zeta611/30aa42148fad7087f6c758f839af5f2c to your computer and use it in GitHub Desktop.
Center the body of neck-twisting web pages 🤦
function(){
var css = 'html,body{display:flex!important;justify-content:center!important;align-items:center!important;min-height:100vh!important;}body>*{max-width:100% !important;}';
var s = document.createElement('style');
s.textContent = css;
document.head.appendChild(s);
})()
@Zeta611
Copy link
Author

Zeta611 commented Jun 4, 2025

Add this as a bookmarklet to save you from the neck pain:

javascript:(function(){   var css = 'html,body{display:flex!important;justify-content:center!important;align-items:center!important;min-height:100vh!important;}body>*{max-width:100% !important;}';   var s = document.createElement('style');   s.textContent = css;   document.head.appendChild(s); })();

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment