Home
CSS
CSS Outline
Outline Color
Tryit: Outline color with RGB 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: rgb(255, 0, 0); /* red */ } p.ex2 { border: 2px solid black; outline-style: dotted; outline-color: rgb(0, 0, 255); /* blue */ } p.ex3 { border: 2px solid black; outline-style: solid; outline-color: rgb(187, 187, 187); /* grey */ } </style> </head> <body> <h2>The outline-color Property</h2> <p>The color of the outline can also be specified using RGB values:</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>