padding: 16px; : padding « CSS « HTML / CSS






padding: 16px;

   
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
                      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en'>
    <head>
        <meta http-equiv='Content-Type' content='text/html; charset=UTF-8' />
        <title>Em Measurement Comparison to Pixels</title>
        <style type='text/css'>
            body {
                font: 1em sans-serif;
            }
            p {
                background: rgb(234, 234, 234);
                border: 1px solid rgb(200, 200, 200);
            }
            p#em-measurement {
                width: 12em;
                padding: 1em;
            }
            p#px-measurement {
                width: 192px;
                padding: 16px;
            }
        </style>
    </head>
    <body>
        <p id='em-measurement'>
            This paragraph is 12 em wide, with a 1em padding.
        </p>
        <p id='px-measurement'>
            This paragraph is 192 pixels wide, with 16 pixels of
            padding.
        </p>
    </body>
</html>

   
    
    
  








Related examples in the same category

1.'padding' Example
2.Padding with one value
3.Padding with two value
4.Padding with three value
5.Padding with four value
6.padding: 10px
7.padding: 2px 4px 6px 8px;
8.padding: 2px 8px 6px;
9.padding: 2px 8px;
10.padding: 2px;
11.padding: 5px;
12.padding: 1em;
13.Style sheet for padding example
14.padding: 5px 0 12px 0; for td
15.padding sets the size of the padding surrounding the inner box.
16.how whitespace can make a page much easier to read
17.No padding
18.with padding
19.padding:0.25em; assigns one-quarter of the font size to padding (i.e., font-sizemultiplied by 0.25).
20.Using Container Attributes
21.Use padding shortcut
22.Padding shortcut '10px 0 0 0'
23.Set margin and padding to 0
24.
25.Using padding on a parent element to avoid problems with margin widths
26.margin collapse and nested elements with default padding
27.margin collapse with nested elements padding