DOM之间的层次结构和html中的标签

时间:2016-11-06 14:24:51

标签: html dom html-table

我想知道HTML代码中的<td><th>代码是否具有相同的层次结构,或者<th>代码的层次结构是否比<td>代码更高?< / p>

2 个答案:

答案 0 :(得分:0)

//assuming we already have our navigationController let myNicelLogoWidth = 100 let myNiceLogoHeight = 50 //start positioning your logo at 0.0, 0.0 let imageView = UIImageView(frame: CGRect(x: 0, y: 0, width: myNicelLogoWidth, height: myNiceLogoHeight)) imageView.contentMode = .scaleAspectFit imageView.center = navigationBar.center //the put your image at the center let image = UIImage(named: "myNiceLogoImage") imageView.image = image navigationItem.titleView = imageView <td>是两种表格单元格,它们是&#34;兄弟姐妹&#34;从某种意义上说,两者的父母通常都是<th>。一个人不能成为另一个人的直接孩子。

答案 1 :(得分:0)

<td><th>都是&#34;姐妹&#34;与共同的父<tr>

但是,<th>通常与标题单元格相关联,而<td>通常与标准单元格[1]相关联。因此,首先从<th>开始,不是作为层次结构而是作为单元格顺序,这是一个好主意。