Latest solutions
Latest comments
- @victorbruce@Kulyk-Volodymyr
Nice solution!
I think you did everything right - his component can be done without media queries. The only thing that can be changed -
height: 100vh
inbody
tomin-height: 100vh
. After that this component will not be partialy hidden on mobile horizontal screen. - @crsaeleWhat are you most proud of, and what would you do differently next time?
I take immense pride in having successfully consolidated my understanding of foundational CSS properties, including but not limited to color, font-size, and background-color. Additionally, I have made significant strides in acquiring knowledge about fundamental HTML elements such as img, p, h1, and span. This proficiency has not only enhanced my technical skills but also equipped me with a robust foundation to further explore the intricacies of web development.
What challenges did you encounter, and how did you overcome them?I expanded my expertise by delving deeper into advanced CSS concepts, specifically focusing on the nuances of CSS shadows and the strategic application of margins to effectively manage whitespace between elements, thereby refining my ability to craft visually appealing and harmonious user interfaces.
What specific areas of your project would you like help with?Please let me know if i could improve my code in any way.
@Kulyk-VolodymyrNice solution!
This component can be more responsive on a mobile screen by adding
width: 100%
to the main image. - @emtee-1023@Kulyk-Volodymyr
Nice solution!
I have ideas to improve the mobile screen view.
- change in
article class="card"
width: 350px
tomax-width: 350px
- change in
img class="hero-img"
width: 350px
towidth: 100%
Marked as helpful - change in
- @udayagupta@Kulyk-Volodymyr
Nice solution, congrats!
I have two independent ideas to make this page a little different)
-
For
header
,main
and.third-section
applymax-width: 1150px; margin:auto
. -
Add
justify-content: space-between
to.third-section
and change item's styling.
In terms of semantics,
.third-section
must be insidemain
. Also, you don't need to usearticle
to make a burger menu. You can reuseul
ofheader
. -
- @JaroslavHosovsky@Kulyk-Volodymyr
Hi, good job!
Component is partialy hidden on the mobile horizontal screen. This can be fixed by changing
height: 100vh
tomin-height: 100vh
inbody
. You can also addpaddind
tobody
to add space around the card.Marked as helpful - @rayaatta@Kulyk-Volodymyr
Great solution!
I have one suggestion for improvement - add
object-fit: cover
to the main image. It may be more responsive.