
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
Set All Top Border Properties in One Declaration Using CSS
Use the border-top property in CSS to set all the top border properties in a single declaration.
Example
You can try to run the following code to implement the border-top property −
<!DOCTYPE html> <html> <head> <style> p { border-style: solid; border-top: thick dashed #FFFF00; } </style> </head> <body> <p>This is demo text</p> </body> </html>
Advertisements