How to float in CSS? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to float in CSS?

How to place the heading(Gallery) and paragraph beside the list(Main menu) in my code https://code.sololearn.com/W1HaS4t2fu9Z/?ref=app

31st Mar 2020, 4:38 PM
Souptik Nath
Souptik Nath - avatar
1 Answer
0
Enclose them in a container with the css rule 'float:rigth;' and move them just before the <h1>Main menu</h1> in the html source code: <div style="float:right"> <h1>Gallery</h1> <p>This is paragraph</p> </div> <h1>Main menu</h1>
1st Apr 2020, 3:54 AM
visph
visph - avatar