CSS: Setting :root Styles For Using REM Values

The below CSS needs adding to any website using REM values to set font-sizes, line-heights and more.

:root {
	font-size: 100%;

	body {
		margin: 0;
		font-size: 1rem;
	}
}

Powered by BetterDocs