Computer >> Computer tutorials >  >> Programming >> Javascript

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>