

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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 Outset border with CSS
To set outset border with CSS, use the border-style property with value outset.
Example
<html> <head> </head> <body> <p style = "border-width:4px; border-style:none;"> This is a border with none width. </p> <p style = "border-width:4px; border-style:outset;"> This is outset border. </p> </body> </html>
- Related Questions & Answers
- Set border width with CSS
- Set Inset border with CSS
- Set dashed line for border with CSS
- Set dotted line for border with CSS
- Set the border image width with CSS
- Set a border around navbar with CSS
- Set bottom-right corner border with CSS
- Set bottom-left corner border with CSS
- Set all border-radius properties with CSS
- Set top-left corner border with CSS
- Set top-right corner border with CSS
- Set the width of image border with CSS
- Set the style of the border with CSS
- Set the color of the border with CSS
- Set a border between two lines with CSS
Advertisements