Skip to content

Commit cafa893

Browse files
committed
Add universal box-sizing rule to CSS
1 parent 801b703 commit cafa893

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

Wireframe/style.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ body {
3232
font: var(--font);
3333

3434
}
35+
36+
* {
37+
box-sizing: border-box;
38+
}
3539
header {
3640
max-width: var(--container);
3741
margin: var(--space)auto;
@@ -51,6 +55,7 @@ header p {
5155
opacity: 0.8;
5256
text-align: center;
5357
}
58+
5459
a {
5560
padding: var(--space);
5661
border: var(--line);

0 commit comments

Comments
 (0)