* { outline: 2px dotted red; }
* * { outline: 2px dotted green; }
* * * { outline: 2px dotted orange; }
* * * * { outline: 2px dotted blue; }
* * * * * { outline: 1px solid red; }
* * * * * * { outline: 1px solid green; }
* * * * * * * { outline: 1px solid orange; }
* * * * * * * * { outline: 1px solid blue; }
The color, type and size of the stroke can be chosen by everyone.outline
property is not supported. For them, perhaps, it is necessary to use the border
.Source: https://habr.com/ru/post/65009/
All Articles