1/* <length> values */
2height: 300px;
3height: 25em;
4
5/* <percentage> value */
6height: 75%;
7
8/* Keyword values */
9height: max-content;
10height: min-content;
11height: fit-content(20em);
12height: auto;
13
14/* Global values */
15height: inherit;
16height: initial;
17height: unset;
1#myID {
2 height: 100px; /* Sets the height */
3 width: 200px; /* Sets the width */
4}
5/* or... */
6.myClass {
7 height: 220px; /* Sets the height */
8 width: 40px; /* Sets the width */
9}
10/* They both work! */