0
Please how do i make one word aligned to the left and the another to the right but still on the same line? html/Css
Tel: (space) 07065785545
6 Réponses
+ 1
Do not provide your personal details on an online platform as they can be misused
+ 1
U can use float for this purpose ex:
<span style="float:left;">Tel:</span>
<span style="float:right;">0123456789</span>
+ 1
Just make a parent div with css
.parent {
display: flex;
justify-content: space-between;
}
https://code.sololearn.com/WKIj9gQqkRw4/?ref=app
+ 1
Float can be use for your problem
0
Wow seems like this ones better. Thanks
- 1
Thanks