
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- 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-right property
The padding-right specifies the right padding of an element. It sets the right padding of an element. This can take a value in terms of length of %.
<html> <head> </head> <body> <p style = "padding-right: 10px; border:1px solid blue;"> This is a paragraph with a specified right padding </p> <p style = "padding-right: 10%; border:1px solid blue;"> This is another paragraph with a specified right padding in percent </p> </body> </html>
Advertisements