Skip to content

Instantly share code, notes, and snippets.

View izzi-ink's full-sized avatar
💜
Having Fun

Izzi izzi-ink

💜
Having Fun
View GitHub Profile
@manigandham
manigandham / rich-text-html-editors.md
Last active July 23, 2024 12:07
Rich text / HTML editors and frameworks

Strictly Frameworks

Abstracted Editors

These use separate document structures instead of HTML, some are more modular libraries than full editors

@profstein
profstein / style.css
Last active December 7, 2022 19:57
Paul Irish Updated Box-Sizing: Border-Box
/* this is taken directly from http://www.paulirish.com/2012/box-sizing-border-box-ftw/ based on his August 2014 update */
/* apply a natural box layout model to all elements, but allowing components to change */
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}