I’m stuck here
HTML & CSS: Part I > 6 The CSS Box Model > Borders > 7/9 Shorthands
Instructions
In style.css, set the border of the .hotel to 2 pixels wide, a solid line, and the color #FFF.
.hotel {
border: 2px solid #FFF;
margin: 60px auto;
padding: 10px 0px 0px 0px;
width: 90%;
}
What the heck?