I am trying to highlight elements on the mouse that are similar to Chrome Inspector / Firebug by adding outline: 4px solid greenusing CSS.
Use outlineworks great because it does not take up space in the box. Thus, the layout will not break, and everything remains in place.
My approach is great for items with width, height, paddingand border. However outlinedoes not include margin.
I am looking for any easy solution, so that outlinewraps the whole element, including margin.
I found outline-offsetone that offsets the outline using a custom number of pixels, but is not supported in IE and equally on all four sides.
If possible, I would like not to add 4 <div />for four sides to simulate the behavior outline. Any ideas?
Horen source
share