TD element is a inline element or block level element?

html-table

Solution

From a style perspective, `td` is (by default) a `table-cell` element. These are more like `inline-block` than they are like `block`, but they're different from both. They're their own thing.

Problem

TD element in table , is a block level element or inline level ? in tr tag , we can have multi TD element . now i have a question : td element is a inline element ? or not ?

Original source