Ayoub Amkhazzou• 280
@ayoam
Posted
you can make it work using flexbox :
<div id="plan-container"> <!--here you put the music logo and text inside a container-> <!--here you put the change button> </div>#plan-container{ display:flex; flex-direction:row; justify-content:space-between; align-items:center; }
0