/* <length> values */
width: 300px;
width: 25em;
/* <percentage> value */
width: 75%;
/* Keyword values */
width: max-content;
width: min-content;
width: fit-content(20em);
width: auto;
/* Global values */
width: inherit;
width: initial;
width: unset;
/*Based on viewport*/
width: 100vh;
width: 100vw;
int? get width native;
The width CSS property sets an element's width. By default,
it sets the width of the content area, but if box-sizing is set
to border-box, it sets the width of the border area.