CSS Tutorial





Español Français 中文 Deutsch Portuguese Japanese nederlands
   
 
CSS Topics
css tutorials Introduction
Types Types
Background Properties Background Properties
Text Properties Text Properties
Font Properties Font Properties
Box Properties BOX Properties
Border Properties Border Properties
Margin Properties Margin Properties
Padding Properties Padding Properties
Special Topics Special Topics
Forums Ask Your Doubts
Scraps More about CSS
Feedback Feedback
 




CSS Bottom Padding


Tutorials Css

Topic

How to set the Bottom Padding in Html?
To create space between lower border and the text.



Explanation

Property: Bottom Padding

Usage:
padding-bottom: 10px;
padding-bottom: 10pt;
padding-bottom: 10%;
padding-bottom: auto;

Definition:
This will set the bottom padding of the object.
It takes the following values.
a) pt : You can set values in points. (e.g: 10pt or 100pt).
b) px : You can set values in pixels. (e.g: 10px or 100px).
c) % : You can set values in percentage. (e.g: 10% or 100%).
d) auto : This will set a automatic margin.

Example 1:
<div style="padding-bottom: 20px;">testing bottom padding</div>

Result:

testing bottom padding

Note: The difference between padding and margin is that padding set values inside the objects scope, while margin moves the whole object away from the nearby object.


Example 2:
<div style="padding-bottom: 30pt;">testing bottom padding</div>

Result:

testing bottom padding



Example 3:
<div style="padding-bottom: 10%;">testing bottom padding</div>

Result:

testing bottom padding



Example 4:
<div style="padding-bottom: auto;">testing bottom padding</div>

Result:

testing bottom padding





A Note
CSS - Cascading Style Sheets can be used along with html tags as explained in this site. This simple CSS will help you to create much elegant and neat html web pages. This does not need any additional softwares or codings. All web browser are capable of handing CSS codes.

Note 2: If required you can using <span> instead of <div> tags. div tag will start and end on new lines. span will not exceed the tag area.
Other Links

web hosting