<div class="absolute">
<p>A block with absolute positioning. It takes up the entire width of the screen due to the use of the left and right properties.</p>
</div>
body {
font: 18px/1.5 sans-serif;
}
.absolute {
position: absolute;
left: 0;
right: 0;
background: #000;
color: #FFF;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.