CSS 参考手册
CSS outline 属性
设置元素周围的轮廓
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> p { border: 1px solid red; outline: green dotted thick; } </style> </head> <body> <p><b>注意:</b> 如果只有一个 !DOCTYP E指定 IE8 支持 outline 属性。</p> </body> </html>
运行结果:
点击运行 »