发布网友 发布时间:2022-04-06 13:00
共3个回答
懂视网 时间:2022-04-06 17:21
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>
效果图:
热心网友 时间:2022-04-06 14:29
outline-offset:0;直接冲掉,不过看你写的后半句也许用
*{更像
热心网友 时间:2022-04-06 15:47
body, h1, h2, h3, h4, h5, h6, hr, p, dl, dt, dd, ul, ol, li, pre, button, input, textarea, th, td {