Given this HTML and CSS, what will the user see in the browser?
HTML
<style>
aside {
border: 2px solid #0077cc;
padding: 1rem;
background-color: #e0f0ff;
max-width: 20rem;
}
</style>
<main>
<article>
<p>This is the main article content.</p>
</article>
<aside>
<p>This is a sidebar with related info.</p>
</aside>
</main>
AThe aside content appears below the main article without any border or background.
BA main article paragraph with a blue-bordered, light blue background box on the side containing related info.
COnly the main article paragraph is visible; the aside content is hidden.
DThe entire page background turns light blue with no visible border around aside.
Attempts:
2 left
💡 Hint
Look at the CSS styles applied to the aside element.
✗ Incorrect
The CSS adds a blue border and light blue background to the aside box, which appears next to the main article content inside the main container.
❓ accessibility
advanced
2:00remaining
Accessibility Role of
What ARIA role is most appropriate to assign to an
Abanner
Bmain
Cnavigation
Dcomplementary
Attempts:
2 left
💡 Hint
Think about the role that describes supporting content related to the main content.