Latest solutions
Latest comments
- @Blanket25@daniloscunha
Good morning Bianca,
There's a step-by-step video of this challenge. [Coder coder channel] (https://www.youtube.com/watch?v=FboXxLxg8eo&t=3135s)
Maybe will help you to understand the image positioning process.
Marked as helpful - @gabriel-masson@daniloscunha
Olá Gabriel,
Minha sugestão é você determinar um tamanho para a div clock, como no exemplo a seguir:
.clock { display: flex; align-items: center; justify-content: space-around; margin: 3rem auto; /* centraliza a div no body */ text-align: center; max-width: 40em; /* determina a largura máxima, fazendo os itens ficarem próximos */ }
- @swethalakshmi22@daniloscunha
Hey! Nice job! You should look for flex-direction (https://developer.mozilla.org/en-US/docs/Web/CSS/flex-direction) to solve the positioning of the image.