一键给网页上边框。

14 阅读1分钟

给网页容器添加边框

[].forEach.call($$('*'), function (a) {
    a.style.outline = '1px solid #' + (~~(Math.random() * (1 << 24))).toString(16);
});

image.png