Home
CSS
CSS Outline
Outline Color
Tryit: Outline color with HEX values
Run ❯
Get your
own
website
Result Size:
625 x 534
×
Change Orientation
Save Code
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <head> <style> p.ex1 { border: 2px solid black; outline-style: solid; outline-color: #ff0000; /* red */ } p.ex2 { border: 2px solid black; outline-style: dotted; outline-color: #0000ff; /* blue */ } p.ex3 { border: 2px solid black; outline-style: solid; outline-color: #bbbbbb; /* grey */ } </style> </head> <body> <h2>The outline-color Property</h2> <p>The color of the outline can also be specified using a hexadecimal value (HEX):</p> <p class="ex1">A solid red outline.</p> <p class="ex2">A dotted blue outline.</p> <p class="ex3">A solid grey outline.</p> </body> </html>