Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed (UPI) Chapter 8: Enhancing Web Design with Cascading Style Sheets (CSS)!
Instruction
Example: Using Absolute Positioning
Objective: Place an aside
element to the right within the body
of a page using absolute positioning.
HTML Structure:
<body>
<main>
<h1>Our speakers this season</h1>
<ul>
<li>October: David Brancaccio</li>
<li>November: Andrew Ross Sorkin</li>
<li>January: Amy Chua</li>
</ul>
<p>Please contact us for tickets.</p>
</main>
...