1. 상수 정의

/* [기본 브라우저] */
:root {
	/* Font size */
  --font-large: 48px;
  --font-medium: 28px;
  --font-regular: 18px;
  --font-small: 16px;
  --font-micro: 14px;

  /* Font weight */
  --weight-bold: 700;
  --weight-semi-bold: 600;
  --weight-regular: 400;
}

.box__title {
  font-size: var(--font-medium);
}

/*---------------------------------------*/

/* [반응형 브라우저] */
@media screen and (max-width: 768px) {
    :root{
			/* Font size */
		  --font-large: 38px;
		  --font-medium: 22px;
		  --font-regular: 14px;
		  --font-small: 12px;
		  --font-micro: 10px;
    }
}

/* screen 외 all, print, speech */
/* and 외 not, only, ,(comma) */

2. 유용한 속성

  1. calc()
width: calc(100% - 80px);