Hello everyone. I need your help in a html coding. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Hello everyone. I need your help in a html coding.

<li class="has-children"> <a href="#">Destinations</a> <ul class="dropdown"> <li><a href="#">Destination-01</a></li> <li><a href="#">Destination-02</a></li> <li><a href="#">Destination-03</a></li> <li><a href="#">Destination-04</a></li> <li><a href="#">Destination-05</a></li> </ul> </li> This is the code where I am going to add Destination's name. But if I add more number of destinations to the above code, it will display as a single list at one side. And I want them to be shown as half on one column half in center and half in right. Like items should display column wise. So what do I need to do in my coding?

23rd Nov 2019, 6:55 AM
Manju Gurung
Manju Gurung - avatar
5 Answers
+ 3
From your description, I understood that you are looking for something like a table. Check the HTML <table>. You can do that with it. example: <table> <tr> <td>a</td> <td>b</td> </tr> <tr> <td>c</td> <td>d</td> </tr> <tr> <td>e</td> <td>f</td> </tr> </table>
23rd Nov 2019, 7:08 AM
๐Ÿ‡ Alex Tuศ™inean ๐Ÿ’œ
๐Ÿ‡ Alex Tuศ™inean ๐Ÿ’œ - avatar
+ 3
So you want to get thw table value of that column u need jquert for that let say colum 2 has proudct name .pic . Size.colour when user move to that section he will see a pop up displaying all content of that colum and row without loading to another page
23rd Nov 2019, 7:38 AM
Abdifatah
Abdifatah - avatar
+ 1
You could use a table with three columns, using the <table> tag. Alternatively, you can use CSS to get a three column layout: https://www.w3schools.com/css/css3_multiple_columns.asp
23rd Nov 2019, 7:12 AM
Michael
Michael - avatar
+ 1
๐Ÿ’œ Alex Tusinean ๐Ÿ‡ Can we use table in dropdown menu items? I mean in table there are table head and table row. And the items are filled according to that heading. But in case of my code, I want that when someone moves the mouse cursor over Destinations button on navbar, it should show all the listed destinations there not one by one in a single column but as I have described above items should be divided into 2 or 3 columns.
23rd Nov 2019, 7:22 AM
Manju Gurung
Manju Gurung - avatar
29th Nov 2019, 4:49 AM
[B.S.] BITTU
[B.S.] BITTU - avatar