CSS |轮廓-颜色属性
原文:https://www.geeksforgeeks.org/css-outline-color-property/
CSS 的轮廓颜色属性设置元素的轮廓颜色。
语法
outline-color: <color> | invert | inherit;
属性值:
-
: It sets the outline color to any valid CSS color.
例:轮廓-颜色:黑色;
```html <!DOCTYPE html>
CSS outline-color propertyh1 { color: green; text-align: center; outline-width: 5px; outline-style: dashed; / CSS property for outline-color / outline-color: black; }
GeeksForGeeks
```
输出:
例:轮廓-颜色:# FF00FF
```html <!DOCTYPE html>
CSS outline-color propertyh1 { color: green; text-align: center; outline-width: 5px; outline-style: dashed; / CSS property for outline-color / outline-color: #FF00FF; }
GeeksForGeeks
```
输出:
示例:轮廓-颜色:rgb(0,0,255);
```html <!DOCTYPE html>
CSS outline-color propertyh1 { color: green; text-align: center; outline-width: 5px; outline-style: dashed; / CSS property for outline-color / outline-color: rgb(0, 0, 255); }
GeeksForGeeks
```
输出:
例:轮廓-颜色:hsl(0,100%,50%);
```html <!DOCTYPE html>
CSS outline-color propertyh1 { color: green; text-align: center; outline-width: 5px; outline-style: dashed; / CSS property for outline-color / outline-color: hsl(0, 100%, 50%); }
GeeksForGeeks
```
输出:
-
invert: It set the outline color to a color which is inverse of the background, which ensures the outline will always be visible. Note: It is not supported by all browsers.
示例:轮廓-颜色:反转;
```html <!DOCTYPE html>
CSS outline-color propertyh1 { border: 5px solid yellow; text-align: center; outline-width: 5px; outline-style: solid; / CSS property for outline-color / outline-color: invert; }
GeeksForGeeks
```
输出:
-
Inherit: It sets the outline color according to outline-color property inherited from its parent element.
例:轮廓-颜色:继承;
```html <!DOCTYPE html>
CSS outline-color propertybody { outline-color: red; }
h1 { text-align: center; outline-width: 5px; outline-style: solid; / CSS property for outline-color / outline-color: inherit; }
GeeksForGeeks
```
输出:
支持的浏览器:CSS 的轮廓颜色属性受以下浏览器支持:
- 铬合金 1
- 边缘 12
- Firefox 1.5
- Internet Explorer 8
- 歌剧 7
- Safari 1.2
版权属于:月萌API www.moonapi.com,转载请注明出处