+ 2
The <h3> won't align with other items
I'm trying to learn the flexbox, I want to align the <h3> with the four buttons at the top but it always go on the bottom can someone help me? Here's the code: https://code.sololearn.com/W1sa5L7556H0/?ref=app
2 Respuestas
+ 4
Add to the h3 the css "display:inline;
+ 2
<button><h3 style="color:#eee">Title</h3></button>
or...
<h3 style="color:#eee">Title</h3> (remove the button)
like this??? check in your code.
if I understood correctly ... what you need is to put the h3 inside the button
(Be careful with the opening and closing tags)