-1

I am making a simple table on my website that needs to be within <p> tags. The table can be CSS or HTML, but the problem is that it always breaks my paragraph and ends the style. using display:block; and display:inline; did not do anything.

Why won't this work?
And if it can't, what should I do instead?

4

1 回答 1

0

CSS 声明的三种类型:

  1. 内部 CSS - 在当前网页的 HEAD 部分下定义。
  2. 内联 CSS - 在特定元素内的给定下定义。
  3. 外部 CSS - 在外部样式表中定义并链接到网页。

避免使用内联 CSS,因为它将特定于给定元素,您将无法继续使用其他元素。

最好有外部 CSS,一旦定义了给定标签的属性,它将自动在每个相应的标签中实现。

内部 CSS 也可以,但它只会增加 html 的可下载大小。

于 2013-02-09T08:26:46.600 回答