0 / 60 seg.

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>