Can't align icon with text | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Can't align icon with text

Hello, I'm currently having some trouble aligning my icons horizontally with my text. Span doesn't seem to be helping me here, any suggestions? https://code.sololearn.com/WA109a14A21A/

23rd Jan 2021, 10:32 PM
skaltecho
1 Answer
+ 2
Remove that span, an inline(span) element can't contain a block(like div) element. Replace it with div and apply following styles .error>div{ background-color:blue; display:flex; } .error>div>i{ margin:3px 10px; }
23rd Jan 2021, 10:54 PM
Abhay
Abhay - avatar