what tag contains the cell tag besides the table | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

what tag contains the cell tag besides the table

6th Oct 2019, 3:51 AM
BASILIO ABAYNEH
BASILIO ABAYNEH - avatar
5 Answers
+ 3
<tr>- table row tag You must have found this question in lesson. Keep in mind don't just keep scrolling through pages. You have to read in order to understand. Try the codes provided in lessons. Change some tags. Modify the code. You'll not understand anything just by scrolling pages. Always read comments on each lesson. All the best. Just to revice a little bit see : we basically need 3 tags for any table.(ther are many morr but we these 3 the most) : <table> - as it sounds ,to create a table. <tr> -table row. to add a row in table. <td> -table data. this is used to create a cell and is nested inside a tr tag. https://www.sololearn.com/learn/HTML/1033/?ref=app
6th Oct 2019, 4:32 AM
🇮🇳Omkar🕉
🇮🇳Omkar🕉 - avatar
+ 3
Ipang the question says "what tag contains cell tag beside table tag" Basically they have said table tag contains a cell tag i.e td (table cell /data). So we need to know which other tag is parent of td and therefore answer is tr table row not td.
6th Oct 2019, 4:50 AM
🇮🇳Omkar🕉
🇮🇳Omkar🕉 - avatar
+ 2
🇮🇳Omkar🕉 Yes, maybe I misunderstood the question. I took it was asking for the cell tag :D I think the "besides the table" here makes it bit confusing. Is the OP looking for an alternative to table tag : )
6th Oct 2019, 4:59 AM
Ipang
+ 1
This question is related to HTML, so you should put HTML in Relevant Tags (not 'ans'). I think <td> is what you're looking for.
6th Oct 2019, 4:43 AM
Ipang
0
<td>
20th Apr 2020, 1:16 AM
BASILIO ABAYNEH
BASILIO ABAYNEH - avatar