CSS的outline-color属性设置元素的轮廓颜色。
用法
outline-color:<color> | invert | inherit;
属性值:
-
<颜色>:它将轮廓颜色设置为任何有效的CSS颜色。
例:outline-color:黑色;
<!DOCTYPE html> <html> <head> <title>CSS outline-color property</title> <!-- Internal CSS Style Sheet --> <style> h1 { color:green; text-align:center; outline-width:5px; outline-style:dashed; /* CSS property for outline-color */ outline-color:black; } </style> </head> <body> <!-- outline-color:black;--> <h1>GeeksForGeeks</h1> </body> </html>
输出:
例:outline-color:#FF00FF;
<!DOCTYPE html> <html> <head> <title>CSS outline-color property</title> <!-- Internal CSS Style Sheet --> <style> h1 { color:green; text-align:center; outline-width:5px; outline-style:dashed; /* CSS property for outline-color */ outline-color:#FF00FF; } </style> </head> <body> <!-- outline-color:#FF00FF;--> <h1>GeeksForGeeks</h1> </body> </html>
输出:
例:outline-color:rgb(0,0,255);
<!DOCTYPE html> <html> <head> <title>CSS outline-color property</title> <!-- Internal CSS Style Sheet --> <style> h1 { color:green; text-align:center; outline-width:5px; outline-style:dashed; /* CSS property for outline-color */ outline-color:rgb(0, 0, 255); } </style> </head> <body> <!-- outline-color:rgb(0, 0, 255);--> <h1>GeeksForGeeks</h1> </body> </html>
输出:
例:outline-color:hsl(0,100%,50%);
<!DOCTYPE html> <html> <head> <title>CSS outline-color property</title> <!-- Internal CSS Style Sheet --> <style> h1 { color:green; text-align:center; outline-width:5px; outline-style:dashed; /* CSS property for outline-color */ outline-color:hsl(0, 100%, 50%); } </style> </head> <body> <!-- outline-color:hsl(0, 100%, 50%);--> <h1>GeeksForGeeks</h1> </body> </html>
输出:
- invert:它将轮廓颜色设置为与背景相反的颜色,以确保轮廓始终可见。注意:并非所有浏览器都支持。
例:outline-color:反转;
<!DOCTYPE html> <html> <head> <title>CSS outline-color property</title> <!-- Internal CSS Style Sheet --> <style> h1 { border:5px solid yellow; text-align:center; outline-width:5px; outline-style:solid; /* CSS property for outline-color */ outline-color:invert; } </style> </head> <body> <!-- outline-color:invert;--> <h1>GeeksForGeeks</h1> </body> </html>
输出:
-
Inherit:它根据从其父元素继承的outline-color属性设置轮廓颜色。
例:outline-color:继承;
<!DOCTYPE html> <html> <head> <title>CSS outline-color property</title> <!-- Internal CSS Style Sheet --> <style> body { outline-color:red; } h1 { text-align:center; outline-width:5px; outline-style:solid; /* CSS property for outline-color */ outline-color:inherit; } </style> </head> <body> <!-- outline-color:inherit;--> <h1>GeeksForGeeks</h1> </body> </html>
输出:
- 镀 chrome 1
- 边12
- Firefox 1.5
- Internet Explorer 8
- Opera 7
- Safari 1.2
支持的浏览器:以下浏览器支持CSS的outline-color属性:
相关用法
- HTML Style outlineColor用法及代码示例
- CSS transition-property用法及代码示例
- CSS nav-down用法及代码示例
- CSS nav-up用法及代码示例
- CSS top属性用法及代码示例
- CSS right属性用法及代码示例
- CSS nav-right用法及代码示例
- CSS all属性用法及代码示例
- CSS min-height用法及代码示例
- CSS max-height用法及代码示例
- CSS nav-index用法及代码示例
- CSS content属性用法及代码示例
- CSS transform属性用法及代码示例
- HTML DOM value用法及代码示例
- CSS shape-outside用法及代码示例
注:本文由纯净天空筛选整理自Husban大神的英文原创作品 CSS | outline-color Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。