codepens/the-div-that-look-different.../dist/style.css

18 lines
230 B
CSS
Raw Normal View History

2023-10-06 23:12:53 +02:00
html {
display: table;
height: 100%;
width: 100%;
}
body {
display: table-cell;
vertical-align: middle;
}
div {
margin: auto;
width: 100px;
height: 100px;
outline: inset 100px green;
outline-offset: -125px;
}