We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7e0530 commit 4010d0aCopy full SHA for 4010d0a
css-layout.js
@@ -0,0 +1,4 @@
1
+// tiny CSS layout "debugger"
2
+// from https://gist.github.com/addyosmani/fd3999ea7fce242756b1
3
+// puts random color border around each element
4
+[].forEach.call($$("*"),function(a){a.style.outline="1px solid #"+(~~(Math.random()*(1<<24))).toString(16)})
0 commit comments