
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
Change the style of top border with CSS
The border-top-style property changes the style of top border.
Example
You can try to run the following property to change the style of the top border:
<html> <head> </head> <body> <p style = "border-width:2px; border-top-style:solid;"> Example showing top border </p> </body> </html>
Advertisements