덕질을 위해 사는 개발자

CSS 주석 처리 본문

Web/CSS

CSS 주석 처리

규달봉 2021. 2. 16. 14:48

 

 

CSS 주석은 <style>요소 내부에 배치 되며 다음으로 /* 시작하고 */ 으로 끝납니다.

 

예시

/* This is a single-line comment */
p {
  color: red;
}

 


Reference

 

 

CSS Comments

CSS Comments CSS Comments Comments are used to explain the code, and may help when you edit the source code at a later date. Comments are ignored by browsers. A CSS comment is placed inside the element, and starts with /* and ends with */: You can add comm

www.w3schools.com