hi all I want to put the figures with images under the h1 title in my projects section.
Can someone help me? Thanks!
Heres my code:
https://codepen.io/helloworld123-/pen/RwNbwBb
hi all I want to put the figures with images under the h1 title in my projects section.
Can someone help me? Thanks!
Heres my code:
https://codepen.io/helloworld123-/pen/RwNbwBb
One way to do it is to add direction and align to your flex section #projects:
flex-direction: column;
align-items: center;
Is it something you want to achieve?
no, the < figures > containing images must stack next to each other, with a lil bit space in between
My suggestion would be to wrap your project cards (figures) in a div with grid as a display option. You can learn about grid here:
how can i do this with flexbox?
cans omeone help me?
Try:
form {
display: flex;
flex-direction: column;
}