Day 9: the inset shorthand property

from blog Manuel Matuzović - Blog, | ↗ original
↗ original
The inset property is a shorthand for the top, right, bottom, and/or left properties. It implements the same multi-value syntax like margin. At bottom right with 20px offset .parent { width: 12rem; height: 12rem; position: relative; } .child { position: absolute; /* top: auto; right: 20px; bottom: 20px; left: auto */ inset:...