(Basics 04) CSS 주석
in CSS
SoloLearn CSS 번역
CSS Comments
CSS 주석
- Comments are used to explain your code, and may help you when you edit the source code later.
- 주석은 코드를 설명하는 데 사용된다.
- 나중에 소스 코드를 편집할 때 도움이 될 수 있다.
- Comments are ignored by browsers.
- 주석은 브라우저에서 무시된다.
- A CSS comment look like this:
- CSS 주석은 다음과 같다.
/* Comment goes here */
- Example:
p {
color: green;
/* This is a comment */
font-size: 150%;
}
- The comment does not appear in the browser:
- 주석은 브라우저에 표시되지 않는다.
Comments can also span multiple lines.
주석은 여러 줄에 걸쳐있을 수도 있다.
QUIZ
- Turn the text into a comment in CSS:
- CSS에서 텍스트를 주석으로 바꿔라.
/* This is a comment */