Give me a solution 👇👇👇 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Give me a solution 👇👇👇

i want to align two div with each other one is left and another one is right at same line.float property is not working what property i can put?

18th Jan 2019, 2:26 PM
WASEEM MEHR
WASEEM MEHR - avatar
3 Answers
+ 2
display:inline-block
18th Jan 2019, 2:35 PM
Gordon
Gordon - avatar
+ 2
//By using display :inline-block to make div inline block and with left, right properties align div <div class="div1">hello</div> <div class="div2">hello</div> <style> .div1{ display:inline-block ; position :absolute ; right :0; } .div2{ display:inline-block ; position :absolute ; left :0; } </style>
18th Jan 2019, 2:46 PM
Sudarshan Rai
Sudarshan Rai - avatar
0
Just add display:inline-block; and width https://code.sololearn.com/WjVjeE5bTzT0/?ref=app
18th Jan 2019, 2:56 PM
Calviղ
Calviղ - avatar