Skip to Content
Web Design in a Nutshell, 3rd Edition
book

Web Design in a Nutshell, 3rd Edition

by Jennifer Robbins
February 2006
Intermediate to advanced
826 pages
63h 42m
English
O'Reilly Media, Inc.
Content preview from Web Design in a Nutshell, 3rd Edition

Absolute Positioning

There have been examples of absolute positioning throughout this chapter, but this section examines this popular method of positioning in more detail.

An absolutely positioned element has these basic characteristics:

  • It is declared using {position: absolute;}.

  • It is positioned relative to the edges of its containing block using one or more of the offset properties (top, right, bottom, left). Properties that are not specified are set to auto (the default). The offset values apply to the outer edge of the element box (including the margin value, if there is one).

  • It is completely removed from the document flow. The space it would have occupied in the normal flow is closed up and it no longer has an affect on other elements (for instance, text won’t wrap around it).

These points are demonstrated in this simple example of an absolutely positioned list element (Figure 21-15).

    div {position: absolute; background-color: #999; width: 440px;}
    ul {position: absolute;left: 60px; top: 30px; background-color: #CCC; margin: 0px;}

    <div>
      <p>Phasellus feugiat eros at mi. Integer leo tellus, hendrerit non, euismod
non, condimentum in, sem. </p>
       <ul>
           <li>Lorem ipsum dolor</li>
           <li>Sit amet, consectetuer</li>
          <li>Adipiscing elit</li>
          <li>Vel nonummy ligula</li>
          <li>Tempus dignissim</li>
       </ul>
      <p>Fusce suscipit, ligula eget tempus ...</p>
    </div>
Absolute positioning

Figure 21-15. Absolute positioning

In all ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Beginning Responsive Web Design with HTML5 and CSS3

Beginning Responsive Web Design with HTML5 and CSS3

Jonathan Fielding

Publisher Resources

ISBN: 0596009879Errata Page