

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
CSS outline-color property
The outline-color property allows you to specify the color of the outline. Its value should either be a color name, a hex color, or an RGB value, as with the color and border-color properties.
Example
You can try to run the following code to implement outline-color property −
<html> <head> </head> <body> <p style = "outline-width:thin; outline-style:solid;outline-color:blue"> This text is having thin solid blue outline. </p> <br /> </body> </html>
- Related Questions & Answers
- The outline-color Property in CSS
- Animate CSS outline-color
- CSS outline property
- CSS outline-style property
- CSS outline-width property
- Animate CSS outline-offset property
- The outline-style Property in CSS
- The outline Shorthand Property in CSS
- The outline-width Property in CSS
- Set the color of the outline with CSS
- CSS caret-color Property
- Setting Color Property in CSS
- Animate CSS outline
- Usage of color property in CSS
- Animate border-color property with CSS
Advertisements