Padding with one value : padding « CSS « HTML / CSS






Padding with one value

   


<!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>
        <title>padding</title>
        <style rel='stylesheet' type='text/css'>
div {
    float: left;
    background: gold;
    margin: 5px;
    width: 250px;
}
div div {
    float: none;
    background: white;
    border: none;
    font: 10px sans-serif;
    color: rgb(200, 200, 200);
    width: auto;
}

div#one-value {     
    padding: 2px;             
}  
       </style>
    </head>
    <body>

        <div id='one-value'>
            <div>
                Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
                Nulla bibendum eros sit amet lectus. Nunc eros massa,
                interdum ut, congue ut, scelerisque quis, tellus.
            </div>
        </div>

    </body>
</html>

   
    
  








Related examples in the same category

1.'padding' Example
2.Padding with two value
3.Padding with three value
4.Padding with four value
5.padding: 10px
6.padding: 2px 4px 6px 8px;
7.padding: 2px 8px 6px;
8.padding: 2px 8px;
9.padding: 2px;
10.padding: 5px;
11.padding: 1em;
12.padding: 16px;
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