Design comparison
Solution retrospective
#HTML #CSS
Good morning, I finished another project, this one took more work, but I managed to finish it. What did you think?
Community feedback
- @correlucasPosted over 2 years ago
Fala João, beleza? Acabei de abrir sua solução pelo celular e vi que o background não está pegando a altura inteira da página, um jeito de resolver isso é adicionando
min-height:100vh
ebackground-size: cover
pra forçar o ajuste.Pra alinhar os cards que não pegam a largura inteira vc vai ter que jogar o
max-width: 100%
e forçar o alinhamento commargin: 0 auto
.Continue no foco ai 👏
Marked as helpful2@JPbytePosted over 2 years ago@correlucas vlw lucas, tmj bro e obg pelas dicas.
1 - @AdrianoEscarabotePosted over 2 years ago
Eae João, beleza?
Mandou muito neste desafio, to Vendo que você está bem focado, fazendo desafios todos os dias e evoluindo sempre. Gostei bastante do resultado do desafio, mas tenho algumas dicas que acho que você irá gostar:
1- O documento deve ter um marco principal, você pode ter colocado todo o conteúdo dentro da tag main, deixar o código mais bem construído. clique aqui para ler sobre
2- Percebi que o tamanho e as posições dos elementos no layout estava variando muito, uma dica que eu dou para arrumar isso é colocar um max-width, segue o exemplo:
.collumn { max-width: 1528px; }
para centralizar o conteudo:
body { display: flex; flex-direction: collumn; align-items: center; }
O resto está muito bom!
Espero que ajude 👍
Marked as helpful1 - @DavidMorgadePosted over 2 years ago
Hello Pedro, congrats on finishing the challenge!
If you don't mind, I would like to give you some suggestions:
Your layout looks great on deskop and mobile sizes, but for tablet it leaves a lot of space on the right side because by default, your
div
with thecolumn
class is atalign-items: flex-start
, instead of that try usingalign-items: center
to center the column completely at lower screen sizes!For you html, try using more semantic tags, like
main
,section
,article
etc... instead of alldiv
to give a more semantically meaning to your content.Hope my feedback helps you in future projects, great work!
Marked as helpful1
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