(Text 16) Module 2 Quiz

SoloLearn CSS 번역


QUIZ

  • What is the correct CSS syntax for making all p elements bold?
    • 모든 p element를 굵게하기 위한 올바른 CSS 구문은 무엇인가?

p { font-weight: bold; }


  • Fill in the blanks to make the paragraph red and bold:
    • 토막글을 빨간색과 굵게 만들어라.
p {
   color: red;
   font-weight: bold;
}


  • Fill in the blanks to make the text of all h1 elements bold, red and 14px:
    • 모든 h1 element의 텍스트를 굵게, 빨간색, 14px로 만들어라.
h1 {
   font-size: 14px;
   font-weight: bold;
   color: red;
}