I’m currently doing the random quote machine project and I’m doing pretty decently in my opinion, but there are two problems:
why does the “align-items” doesn’t align my quote box element in the vertical center of the page?
how can i make my buttons (currently button but will be buttons) locked in the quote box so they will stay steady in one line? should i make a seperate div for them?
thanks in advance
link to the project: https://codepen.io/harel_avv/pen/xxEgNJL
1.) It does, it is just that your page is the same height as your quote box, so it can’t put the box where you want it to go, unless you make the page height 100% of the view height.
If you
2.) You can make the quote box relative, and the buttons absolute and send the buttons to the bottom. Using absolute positioning isn’t best practice though because it is not very responsive. So I would avoid it if possible, you could wrap the quotes in a new div and the button in a new div and make the new quote div height as large as you want and then use the new button div and fill in the rest of the height so it fills up the entirety of the quote box, and that way it wont move every time a new quote is generated.