CSS

See also CSS selectors

display

From https://www.w3schools.com/cssref/pr_class_display.php
ValueMeaning
inlineDisplays an element as an inline element (like <span>). Any height and width properties will have no effect. This is default.
blockDisplays an element as a block element (like <p>). It starts on a new line, and takes up the whole width
contentsMakes the container disappear, making the child elements children of the element the next level up in the DOM
flexDisplays an element as a block-level flex container
gridDisplays an element as a block-level grid container
inline-blockDisplays an element as an inline-level block container. The element itself is formatted as an inline element, but you can apply height and width values
inline-flexDisplays an element as an inline-level flex container
inline-gridDisplays an element as an inline-level grid container
inline-tableThe element is displayed as an inline-level table
list-itemLet the element behave like a <li> element
run-inDisplays an element as either block or inline, depending on context
tableLet the element behave like a <table> element
table-captionLet the element behave like a <caption> element
table-column-groupLet the element behave like a <colgroup> element
table-header-groupLet the element behave like a <thead> element
table-footer-groupLet the element behave like a <tfoot> element
table-row-groupLet the element behave like a <tbody> element
table-cellLet the element behave like a <td> element
table-columnLet the element behave like a <col> element
table-rowLet the element behave like a <tr> element
noneThe element is completely removed
initialSets this property to its default value.
inheritInherits this property from its parent element.

font-family

font-family:"Times New Roman",Times,serif;
font-family:Verdana,Geneva,sans-serif;
# code
font-family:"Courier New",Courier,monospace;
font-family:"Comic Sans MS",cursive;
font-family:Cottonwood,"FB Reactor",fantasy;
font-family: HK Grotesk,sans-serif;

white-space

From https://www.w3schools.com/cssref/pr_text_white-space.php
ValueMeaning
normalSequences of whitespace will collapse into a single whitespace. Text will wrap when necessary. This is default
nowrapSequences of whitespace will collapse into a single whitespace. Text will never wrap to the next line. The text continues on the same line until a <br> tag is encountered
preWhitespace is preserved by the browser. Text will only wrap on line breaks. Acts like the <pre> tag in HTML
pre-lineSequences of whitespace will collapse into a single whitespace. Text will wrap when necessary, and on line breaks
pre-wrapWhitespace is preserved by the browser. Text will wrap when necessary, and on line breaks
initialSets this property to its default value.
inheritInherits this property from its parent element.