— css — 1 min read
The
inset
CSS property is a shorthand that corresponds to the top, right, bottom , and/or left properties. It has the same multi-value syntax of the margin shorthand.
1position: fixed; // or absolute2top: 0;3left: 0;기4right: 0;5bottom: 0;
1inset: 0;
IE 지원 안함.