center-content

Center content through flexbox

  1. /* ==UserStyle==
  2. @name center-content
  3. @author zhengqunkoo
  4. @description Center content through flexbox
  5. @version 1.1
  6. @match <all_urls>
  7. @excludeMatches file:///*
  8. @excludeMatches https://duckduckgo.com/*
  9. @excludeMatches https://console.cloud.google.com/*
  10. @run-at document-start
  11. @namespace https://greasyfork.org/users/673982
  12. ==/UserStyle== */
  13.  
  14. html {
  15. display: flex;
  16. justify-content: center;
  17. }