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

Using the height and width properties is straightforward, as shown in these examples and Figure 19-3.

    div#tall {width:100px; height:200px; }
    div#wide {width:200px; height:100px; }

    <div id="tall" style="position:absolute;">
      Lorem ipsum ...
    </div>

    <div id="wide" style="position:absolute; left: 205px;">
      Lorem ...
    </div>

There are only a few special behaviors to be aware of:

  • width and height properties apply to the content area of the element only. Padding, borders, and margins are added onto the width and height values to arrive at the total element box dimensions. (See the sidebar "The IE/Windows Box Model Problem" for details regarding the notoriously incorrect implementation of box model measurements in Internet Explorer for Windows.)

    The height and width properties

    Figure 19-3. The height and width properties

  • An element’s height is calculated automatically and is just large enough to contain the element’s contents; therefore, it is less common to specify height. The height of the content may change based on font-size, user settings, or other factors. If you do specify a height for a text element, be sure to also consider what happens should the content not fit (the overflow property is discussed in Chapter 21).

  • For images, it is recommended that both width and height values be provided.

  • CSS 2 introduced percentage values for width and height. Percentage values are calculated as a percentage of the width of the parent ...

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