How do I make an HTML table inline

前端 未结 5 914
猫巷女王i
猫巷女王i 2021-01-03 21:49

In HTML I want to display a small table as part of a paragraph. One way to do that is this:

Before <
5条回答
  •  离开以前
    2021-01-03 22:09

    I'm using Chrome browser on Linux and I am able to get this to work by adding display:inline-table to both the paragraph (p) and table tags:

    Before

    ab
    cd
    After

    Just checked Firefox on Linux and it seems to work there too.

    FYI: Removing either of the two display:inline-table styles gave undesirable formatting.

提交回复
热议问题