Files
textual/docs/examples/styles/box_sizing.css
Rodrigo Girão Serrão a1b9d4b2c5 Fix examples.
2023-01-09 16:11:45 +00:00

21 lines
249 B
CSS

#static1 {
box-sizing: border-box;
}
#static2 {
box-sizing: content-box;
}
Screen {
background: white;
color: black;
}
App Static {
background: blue 20%;
height: 5;
margin: 2;
padding: 1;
border: wide black;
}