-
Notifications
You must be signed in to change notification settings - Fork 6
Feature/box model #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
Feature/positioning box model
Complements css exercises for grid, media queries and layouts
| <h1>This is my first layout</h1> | ||
| </header> | ||
| <nav> | ||
| <lu> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| <lu> | |
| <ul> |
| <li>Products</li> | ||
| <li>About us</li> | ||
| <li>Contact</li> | ||
| </lu> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| </lu> | |
| </ul> |
| border: 2px solid blue; | ||
| box-sizing: border-box; | ||
| position: absolute; | ||
| width: 200px; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for the exercise you need to make the element as big as 200px but without using the width property.
No description provided.