CSS Vertical Text Alignment
I haven't messed with my website in a few months and I've been sick for 2 weeks. Trying to add a new section of buttons and my brain is frying trying to get the text to align. ðŸ˜

2 Replies
I found a solution where someone said to use line-height but, that only work for single lines of text in the buttons. Am I missing something? I must be.
I was trying to avoid relying on padding too much since I don't want the box size to change based on the text.
you could remove the padding on the li and use grid (or flex) on the li items themselves.
you could also use
align-content: center
without having to define the display but that may not work on all browsers yet.