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>

Samual Sam
Samual Sam

Learning faster. Every day.

Updated on: 03-Feb-2020

378 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements