Combining CSS variables with calc() expressions is just plain awesome: html { --header-height: 40px } .page-content { top: calc(var(--header-height) + 10px) } ...
確定! 回上一頁