Latest solutions
Latest comments
- @urateb@yavuzkarakus
Hi Uratë Bekaj! 👋🏻
It looks pretty good. It's good that you're using Vue and Sass. 💯 But in HTML all your containers are built with
<div>
. You can try using semantic tags. You can see the documentation about semantic tags by clicking here.Happy coding! ⚡
Marked as helpful - @JonathanCarlton@yavuzkarakus
Hello @JonathanCarlton, 👋
If you want your code to be more readable, I recommend using semantic tags in HTML. Semantic tags will not only make your code more readable but also help you write consistent code. That's why you should use tags like
<header></header>
,<footer></footer>
,<main></main>
.For more details, you can learn more about semantic tags by clicking on the link here.
Happy coding! 🤩
- @xhemals@yavuzkarakus
Hi @xhemals,
I can suggest a few things to change and simulate the look a bit more. First of all, in order to use flexbox, you need to give
display: flex;
to the parent of the object you want to center. On the other hand,position: absolute;
is not a feature we usually prefer. At least that's how I know. 🙃If you have difficulties, you can click here to check my GitHub account. But please try to write code yourself first. After all, as the saying goes; fake it until you make it. 😉
Happy coding!