您的当前位置:首页outline-offset属性怎么用

outline-offset属性怎么用

2020-11-02 来源:乌哈旅游
CSS3的outline-offset属性用于对轮廓进行偏移,并在边框边缘进行绘制;可以通过length值设置轮廓与边框边缘的距离。

CSS3 outline-offset属性

作用:对轮廓进行偏移,并在超出边框边缘的位置绘制轮廓。

说明:轮廓与边框有两点不同:轮廓不占用空间,轮廓可能是非矩形的。

语法:

outline-offset: length|inherit;

length:轮廓与边框边缘的距离。

inherit:规定应从父元素继承 outline-offset 属性的值。

CSS3 outline-offset属性的使用示例

<!DOCTYPE html>
<html>
<head>
<style> 
div
{
margin:20px;
width:150px; 
padding:10px;
height:70px;
border:2px solid black;
outline:2px solid red;
outline-offset:15px;
} 
</style>
</head>
<body>

<p><b>注释:</b>Internet Explorer 和 Opera 不支持 support outline-offset 属性。</p>

<div>这个 div 在边框边缘之外 15 像素处有一个轮廓。</div>

</body>
</html>

效果图:

1.jpg

显示全文