PNLdev
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
En
English
فارسی
En
English
فارسی
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
Run
<!DOCTYPE html> <html> <head> <style> h1 { border-style: solid; border-color: blue; } div { border-style: solid; border-color: blue; } </style> </head> <body> <h1>border-color property example</h1> <div>The border-color can be specified with a color name.</div> <p><strong>Note:</strong> The border-color property does not work if it is used alone. Use the border-style property to set the border first.</p> </body> </html>