-
Notifications
You must be signed in to change notification settings - Fork 511
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
hw added #672
base: master
Are you sure you want to change the base?
hw added #672
Conversation
src/style.css
Outdated
} | ||
|
||
.block-blue { | ||
width: 328px; |
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.
width should be set to 350px, not 328px
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.
use box-sizing css rule for this task
src/style.css
Outdated
.mid { | ||
margin: 40px 20px; | ||
} |
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.
instead of adding separate class with margins mb add margin: 20px to body and margin-bottom: 40px to each block?
src/style.css
Outdated
@@ -0,0 +1,28 @@ | |||
* { | |||
box-sizing: border-box; | |||
background-color: #000; |
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.
add background-color: #000 to body, not to ALL elements on the page
DEMO LINK
TEST REPORT LINK