-
-
Notifications
You must be signed in to change notification settings - Fork 43
Html css/week3/berhane #74
base: master
Are you sure you want to change the base?
Html css/week3/berhane #74
Conversation
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.
Responsiveness work is good - probably need to tighten up in places.
Couple of notes:
- When creating a new PR for homework create a fresh branch - there are changes here from the last 2 weeks so difficult to see what to look at
- Always format code, remove commented code, whitespace etc before submitting (this makes it easier to read)
- Need to add some more styling / colour / pics etc.
font-size: 1.17em; | ||
margin-block-start: 1em; | ||
margin-block-end: 1em; | ||
margin-inline-start: 0px; |
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.
Prefer no unit when the value is zero. margin-inline-start: 0;
Won't break but is an industry standard :)
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
/*margin-bottom: 10px; |
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.
remove commented code
@@ -0,0 +1,266 @@ | |||
|
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.
Try to keep spacing consistent through out the file. It makes it easier to read
Check for an extension on vscode that will format the file.
<div class="image-carousel"><img src="" alt="">IMAGE CAROUSEL</div> | ||
<div class="carousel-list"> | ||
<ul class="carousel-item"> | ||
<li><img src="" alt="">IMG1</li> |
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.
No img src?
Week3 HTML-CSS-homework