CSS Tricks & Tips - Use Outline instead of Border to see elements

Опубликовано: 22 Апрель 2026
на канале: Archivers
134
4

CSS Tricks & Tips - Use Outline instead of Border to see elements

ex:
html {
box-sizing: border-box;
outline: black solid 2px;
}
*, *:before, *:after {
box-sizing: inherit;
outline: inherit;
}

Outline does not effect the dimensions of an element where as Border does.

Written guide: https://duckyobrien.com/2022/09/28/cs...
W3Schools Article: https://www.w3schools.com/css/css_out...
Andee927:   / andee927  

#CSS #frontend #tricks #tips #guides #tutorials #untitlednotepad