-
Notifications
You must be signed in to change notification settings - Fork 93
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
An embarrassment which we hope to discuss only rarely but that satisfies the ne… #77
base: master
Are you sure you want to change the base?
Conversation
…cessicary conditions of the project at hand
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.
Nice job Kit! My apologies it took me so long to give you feedback on this. Your grid worked well here, but I think some of your flex boxes didn't get applied as you intended. This is something we can definitely continue to practice with your future front-end work!
<ul> | ||
<li>NAVIGATION</li> | ||
<li><a href=../pages/index.html> home </a></li> | ||
<li><a href=../pages/portfolio.html> - portfolio - </a></li> | ||
<li><a href=../pages/about.html> about </a></li> | ||
</ul> |
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.
Nice use of ul
!
<!-- <p><img class="container" src="../images/milky-way-map.png" alt="A map of the milky way from Wikipedia."></p> --> | ||
<p class="container card"> | ||
<img src="../images/milky-way-map.png" alt="A map of the Milky Way from Wikipedia."> | ||
<img src="../images/milky-way-map-with-alaska.png" class="img-top" alt="The same map of the Milky Way from before, edited to show Alaska's position."> |
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.
Nice use of alt text! Also a very funny picture 😛
|
||
.grid-container { | ||
display: grid; | ||
grid-template-columns: 1fr 1fr 1fr; |
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.
Nice use of fractional units!
<ul class = "grid-container"> | ||
<li><img class = "li-image" src = "../images/top-1701-a.png" alt = "top view of saucer portion of USS Enterprise NCC-1701"></li> | ||
<li><img class = "li-image" src = "../images/top-1701-b.png" alt = "top view of saucer portion of USS Enterprise NCC-1701-B"></li> | ||
<li><img class = "li-image" src = "../images/top-1701-c.png" alt = "top view of saucer portion of USS Enterprise NCC-1701-C"></li> | ||
</ul> |
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.
Good grid here!
<li><img class="flex-container" src = "../images/top-1701-a.png" alt = "top view of saucer portion of USS Enterprise NCC-1701"> | ||
<img class="flex-container" src = "../images/top-1701-b.png" alt = "top view of saucer portion of USS Enterprise NCC-1701-B"> | ||
<img class="flex-container" src = "../images/top-1701-c.png" alt = "top view of saucer portion of USS Enterprise NCC-1701-C"> |
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.
These don't actually end up in a flexbox. We would need display:grid
styling on the li
element to make this work.
…cessicary conditions of the project at hand
Personal Portfolio Site
Congratulations! You're submitting your assignment!
Comprehension Questions