Design comparison
Solution retrospective
Hey everyone! I've just completed the NFT-preview-card code challenge. Any feedback and suggestions on how i can improve are would be helpful.
Community feedback
- @NaveenGumastePosted over 2 years ago
Hay ! sushil Good Job on challenge
These below mentioned tricks will help you remove any Accessibility Issues
-> Add Main tag after body
<main class="container"></main>
-> Learn more on accessibility issues
Keep up the good work!
Marked as helpful0 - @karimfilaliPosted over 2 years ago
Hello, congratulations for finishing your second FrontEndMentor challenge ! Your card is very great. The card is a little small but the sizes fit good with the expected design. However, you have an accessibility issue. To fix it, your website must have a h1 for accessibility reasons. Your p.t1 should be a h1. But use <h1> tag only once in main heading element.
Very great job though !
Marked as helpful0@sushil540Posted over 2 years ago@karimfilali Thank you for your valuable feedback!, it's really worked for me.😊
0 - @PhoenixDev22Posted over 2 years ago
Hello @sushil540 ,
I have some suggestions regarding your solution:
- you're using widths in percentage. Not a great idea as you're losing control of the layout. Use
max-width
instead, let it grow to a point. Then a little margin on the component or padding on the body to stop it hitting screen edges .let the content to dictate its height .
.card { : max-width: 350px; /* height: 460px; */ display: block; : /* margin: 5% auto 5% auto;*/ /* no need for margin if you are going to use flexbox*/ : }
- To center the card on the middle of the page, use the flexbox properties and
min-height
to the body.
body { background-color: hsl(217, 54%, 11%); font-family: 'Outfit',sans-serif; display: flex; align-items: center; justify-content: center; min-height: 100vh;
-
<svg> 's
do not add important information to a document should be considered decorative. You can usearia-hidden="true"
to hide the SVG from screen readers.focusable="false"
is also used to ensure Internet Explorer won’t allow the Tab key to navigate into the SVG. -
for the image hover, first it should be wrapped in an anchor tag as already stated. You can add - either
aria label
orSr only
text oralt
text on the image that says where the link goes. -
The eye image doesn't really need to be in the html, you could do it with css. If you want it to stay in html it needs to be
aria-hidden
orrole presentation
with emptyalt
as it's a decorative image. -
You can use an unordered list
<ul>
to wrapclass="table"
and in each list item would be<svg>
and<p>
. (rather than a table)
<main class="card"> <div class=images> <img class="svg" src="images/icon-view.svg" alt="a graphics"> <img class="eq" src="images/image-equilibrium.jpg" alt="Equilibrium"> </div> <h3> Equilibrium #3429 </h3>/* you need to use heading for the title , in this challenge , you can use <h1> */ <h1 class="t1"> Our Equilibrium collection promotes balance and calm. </h1> /* use <p> tag */ <table class="table"> /* You can use <ul> */ : : : <div class=""> <img class="pro" src="images/image-avatar.png" alt="avatar"> <p class="t2"> Creation of <a>Jules Wyvern</a> </p> </div> </main>
-
No need for the
<hr>
, you can useborder-top: ;
to the avatar's div. -
You should use
em
andrem
units .Bothem
andrem
are flexible, scalable units . Usingpx
won't allow the user to control the font size based on their needs
Hopefully this feedback helps.
0 - you're using widths in percentage. Not a great idea as you're losing control of the layout. Use
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord