Design comparison
SolutionDesign
Solution retrospective
What are you most proud of, and what would you do differently next time?
Olá pessoal!
Finalizei mais projeto do projeto.
Inserir formas no plano de fundo com CSS
.simple-img{ background-color: var(--soft-blue); border-radius: 0 0 0 100px; width: 50%; height: 300px; position: relative; } .simple-img img{ width: 500px; position: absolute; top: -70px; left: -150px; }
Usar JS de forma dinâmica com textos e imagens
function ActiveTab(index){
document.getElementById("tab1Content").style.display = "none";
document.getElementById("tab2Content").style.display = "none";
document.getElementById("tab3Content").style.display = "none";
document.getElementById("tab" + index + "Content").style.display = "flex";
}
What challenges did you encounter, and how did you overcome them?
Configuração do menu mobile.
What specific areas of your project would you like help with?No menu mobile é a áreas que necessito de ajuda.
Gostaria de dicas para deixá-lo da forma que deveria.
Agradeço desde!
Community feedback
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