Padding with one value : padding : CSS Attributes and Javascript Style Properties HTML CSS TUTORIALS


HTML CSS TUTORIALS » CSS Attributes and Javascript Style Properties » padding »

 

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(200200200);
    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>

 



HTML code for linking to this page:

Follow Navioo On Twitter

HTML CSS TUTORIALS

 Navioo CSS Attributes and Javascript Style Properties
» padding