- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
CSS padding-bottom property
The padding-bottom specifies the bottom padding of an element. It sets the bottom padding (space) of an element. This can take a value in terms of length of %.
Example
<html> <head> </head> <body> <p style = "padding-bottom: 10px; border:1px solid red;"> This is a paragraph with a specified bottom padding </p> <p style = "padding-bottom: 10%; border:1px solid red;"> This is another paragraph with a specified bottom padding in percent </p> </body> </html>
- Related Articles
- Animate CSS padding-bottom property
- CSS padding property
- CSS padding-right property
- CSS padding-top property
- CSS padding-left property
- Animate CSS padding-left property
- Animate CSS padding-right property
- Specify the bottom padding of an element with CSS
- Animate bottom CSS property
- The padding shorthand Property in CSS
- Perform Animation on CSS padding-top property
- Animate CSS border-bottom property
- Animate CSS margin-bottom property
- CSS border-bottom-right-radius property
- CSS border-bottom-left-radius property

Advertisements