calc()
Perform mathematical calculations to determine CSS property values.
div { width: calc(100% - 20px); margin-left: calc(50% - 10rem); }
var()
:root { --primary-color: #3498db; } h1 { color: var(--primary-color, fall_back_values); }