I found it a lot easier to do compared to previous projects.
What specific areas of your project would you like help with?I'm always looking for ways to improve so any opinion and advice is very helpful. Thanks
I am on my way to learn React and I need to learn many more. If anything is not good, please share any type of feedback.
I found it a lot easier to do compared to previous projects.
What specific areas of your project would you like help with?I'm always looking for ways to improve so any opinion and advice is very helpful. Thanks
Hi Timony, congrats🎉 on completing the challenge.
Use html semantic elemnets to avoid accessibility issues. Following is structure for semantic elements:
<body>
<main>
---your code here----
</main>
<footer>
</footer>
</body>
Hope you will find this Feedback Helpful.
Hi EwkaKonewka, congrats on completing the challenge.
To avoid accessibility issue "All page content should be contained by landmarks" use code as :
<body>
<main>
---your code here----
</main>
<footer>
</footer>
</body>
Hi, congrats🎉 on completing the challenge. Better take care about following points.
--Got any questions, REPLY--
Hope you will find this Feedback Helpful.
Let's connect for learning📝 and sharing🤝. Twitter , LinkedIn , GitHub
Hi, congrats🎉 on completing the challenge. Better take care about following points.
min-height: 100vh;
in body selector inside CSS.main
selector.margin-top: 1em;
in .attribution
selector..container {
display: flex;
border-radius: 0.5rem;
overflow: hidden;
border: 0.1rem solid #ebdddf;
box-shadow: 0 0.2rem 1rem black;
height: 25rem;
max-width: 520px;
}
.left-side {
background: url(images/image-product-desktop.jpg);
background-size: cover;
background-repeat: no-repeat;
height: 100%;
width: 50%;
}
@media (max-width: 525px)
.container {
display: flex;
flex-direction: column;
height: 39rem;
width: 20rem;
}
@media (max-width: 525px)
.left-side {
background: url(images/image-product-mobile.jpg);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
width: 100%;
}
--Got any questions, REPLY--
Hope you will find this Feedback Helpful.
Let's connect for learning📝 and sharing🤝: Twitter , Instagram , LinkedIn , GitHub
Hi, congrats🎉 on completing the challenge. Better take care about following points.
em
unit for margin and padding and rem
unit for font-size. Watch here.--Got any questions, REPLY--
Hope you will find this Feedback Helpful.
Let's connect for learning📝 and sharing🤝. Twitter , LinkedIn , GitHub
Hi, congrats🎉 on completing the challenge. Better take about following points:
<body>
<main>
---your code here----
</main>
<footer>
</footer>
</body>
body {
background-color: var(--dark-blue);
display: grid;
place-content: center;
min-height: 100vh;
}
@media screen and (min-width: 500px)
.container-card {
/* margin: 25%; */
/* max-width: 600px; */
border-radius: 20px;
box-shadow: 1px 7px 40px rgb(21, 30, 36);
}
.container-card {
background-color: var(--dark-grayish-blue);
margin: 0em 1em;
max-width: 600px;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 4rem 1rem 7rem 1rem;
border-radius: 10px;
box-shadow: 1px 3px 10px rgb(21, 30, 36);
}
If you are enough comfortable with CSS better learn about responsive units and responsiveness. For responsivness learning, take Conquering Responsive Layouts short course.
When we open GitHub repository link, at right side you will find an About Section. There, also include a description and live preview link of your project.
In README file of your GitHub project's solution remove already present content and write about your own working flow, findings, new learned things, useful resources, etc.
--Got any questions, REPLY--
Hope you will find this Feedback Helpful.
Let's connect for learning📝 and sharing🤝. Twitter , LinkedIn , GitHub