output I am creating a menu page with three containers: chicken, beef, and sushi. However, after writing the CSS code, the boxes appear uneven. Here is my CSS code:
* {
box-sizing: border-box;
}
body {
background-color: white;
}
h1 {
text-align: center;
font-family: cursive;
}
div{
border: 1px solid black;
width: 300px;
float: left;
margin: 20px;
}
I need help figuring out why the containers are uneven and how to fix it.