<div> Tag help | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

<div> Tag help

I was trying to make a table like the one posted below. My idea was to have multiple tables and to have separate ID's for CSS styling. I get that I cannot is the <div> tag like this, but why? Also is there a better way to do this? FYI, I just started CSS so I know that there might be something higher leveled to work with. I am just trying to get a better understanding of each part before moving on. <table> <div> <tr> <td>1R 1C</td> <td>1R 2C</td> </tr> </div> <tr> <td>2R 1C</td> <td>2R 2C</td> </tr> </table> Here is a more detailed example of the idea I am working with: https://code.sololearn.com/WehPjI6GUBMI I tried this in the Playground and it showed an error that stated there was an unexpected tag that caused a voodoo effect. My confusion stems from where you can and cannot apply the <div> tag.

11th Nov 2018, 10:55 PM
Dakota
6 Answers
+ 1
Dakota apparently <div> doesn’t work inside tables.
12th Nov 2018, 2:07 AM
yinhaodragon7
yinhaodragon7 - avatar
+ 2
Are you looking for something just like it?? https://code.sololearn.com/Wfaa0cO19T4w/?ref=app
12th Nov 2018, 1:30 AM
AL Araf
AL Araf - avatar
0
Can you clarify?
11th Nov 2018, 11:00 PM
yinhaodragon7
yinhaodragon7 - avatar
0
@Al Araf, That would work, or I just realized that I can add an ID or Class directly to the <tr> tag, which would solve that problem. Now I just need an explanation of the proper use of the <div> tag in general.
12th Nov 2018, 1:46 AM
Dakota
0
@yinhaodragon7, Haha, I'll just have to accept that. I get that there is an odd relation between <div> and <table> due to them both being block elements. Maybe it affected by the way the table formats the text.
12th Nov 2018, 2:29 AM
Dakota
0
You can not input div tag inside table tag whereas you can input table tag inside div tag!!😊
12th Nov 2018, 4:13 AM
AL Araf
AL Araf - avatar