Question:
I would like “This is label” text to stack right underneath the “Prefix Text”, while radio button to be aligned right next “Prefix Text”. Is it possible to get this done by updating class for div element that contains “This is label” only? I would like to keeplabel-container
class untouched if possible as I may add icon in front of “Prefix Text” so I will need display: inline-flex
to wrap them up. https://codepen.io/Judoboy/pen/OJQqPEW?editors=1100Answer:
You can do this:- Wrap both
Prefix Text
andThis is label
with additionaldiv
. - Change
align-items
in.label-container
class tostart
(you can keepdisplay: inline-flex
).
If you have better answer, please add a comment about this, thank you!