Design comparison
Community feedback
- @0xabdulkhaliqPosted over 1 year ago
Hello there 👋. Congratulations on successfully completing the challenge! 🎉
- I have other recommendations regarding your code that I believe will be of great interest to you.
HTML 🏷️:
- This solution generates accessibility error reports due to
non-semantic
markup, which lack landmark for a webpage
- So fix it by replacing the element
<div class="container">
the with semantic element<main>
in yourindex.html
file to improve accessibility and organization of your page.
- What is meant by landmark ?, They used to define major sections of your page instead of relying on generic elements like
<div>
or<span>
- They convey the structure of your page. For example, the
<main>
element should include all content directly related to the page's main idea, so there should only be one per page
HEADINGS ⚠️:
- And, this solution has also generated accessibility error report due to lack of level-one heading
<h1>
- Every site must want at least one
h1
element identifying and describing the main content of the page.
- An
h1
heading provides an important navigation point for users of assistive technologies, allowing them to easily find the main content of the page.
- So we want to add a level-one heading to improve accessibility by reading aloud the heading by screen readers, you can achieve this by adding a
sr-only
class to hide it from visual users (it will be useful for visually impaired users)
I hope you find this helpful 😄 Above all, the solution you submitted is great !
Happy coding!
Marked as helpful0 - @pinhobPosted over 1 year ago
Fala, Cauan! Muito legal ver outro brasileiro por aqui!
Vou escrever em português pra facilitar pra gente, então, beleza? 😅
Seu projeto tá bem legal, mas tenho algumas sugestões:
- Uma dica que dou é pesquisar sobre a metodologia
BEM
para nomes de classes e aplicar em seu projeto.
Ajuda bastante na hora de nomear as classes de forma mais clara e é um padrão bastante utilizado com CSS puro. Esse vídeo aqui é bem legal e fala mais sobre o
BEM
.- Outra dica é usar
rem
para os valores de tamanho de fonte do seu projeto.
As classes como
.small
e.left
tão usando pixels e por isso elas não se adaptam ao tamanho de fonte escolhido pelo usuário. Usandorem
sua aplicação ficaria mais acessível e evitaria isso - se quiser fazer o teste, vai nas configurações do seu navegador e muda o tamanho da fonte. Vai ver que o título muda de acordo mas que os parágrafos não.A diferença do rem pros pixels é que ele considera esse tamanho de fonte definido pelo usuário para calcular o tamanho da fonte.
Se não quiser ficar fazendo a conversão de pixels para rem de cabeça, você pode usar a função
calc()
e deixar o CSS fazer por você, usando a fórmulatamanho que quer / 16 * 1 rem
. O valor de16
é em relação aos16pxs
que costumam ser o tamanho padrão de fonte dos navegadores. Exemplo:.small { font-size: clamp(12 / 16 * 1rem) // 0.75rem }
- E por último, vi que você já atualizou a questão do tamanho do card. Se quiser que suas mudanças se reflitam no print aqui da plataforma, você pode pedir
generate a new screenshot
dentro do painel da sua solução.
No mais, parabéns pelo projeto. E bons códigos por aí! 🚀
0 - Uma dica que dou é pesquisar sobre a metodologia
- @CauanzPosted over 1 year ago
I think I implemented all that you said P.S:(English is not my first language, so, if something went wrong)
0
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