LinkedIn WordPress Skill Quiz Answers

What color is the paragraph nested within the div?

Latest Update on 23rd January, 2022 by Certification Course Answers

What color is the paragraph nested within the div?

<head>
        <style>
                body { color: black; }

                p { color: blue; }

                div { color: green; }

                p { color: red; }
        </style>
</head>
<body>
        <div>
                <p>This is a paragraph inside a div.</p>
        </div>
</body>
</html>
  1.  blue
  2.  black
  3.  red
  4.  green

Correct Answer:

  •  red

Latest Updates

No posts found in this category.