1. ホーム
  2. html

[解決済み] When to use <span> instead <p>?

2022-03-02 05:23:57

Question

As the question indicates, if I have some text that I want to add in the HTML then when should I use <p> and when should I use <span> ?

How to solved?

You should keep in mind, that HTML is intended to DESCRIBE the content it contains.

So, if you wish to convey a paragraph, then do so.

Your comparison isn't exactly right, though. The more direct comparison would be

When to use a <div> instead of a <p> ?

as both are block level elements.

A <span> はインラインで、アンカーと同じように ( <a> ), <strong> , 強調 ( <em> などのように、段落の前後で区切りが入るのは、htmlでも自然文でも既定路線であることを念頭に置いておいてください。 <div> .

時々、スタイル付けをするとき - インラインのもの - は <span> は、CSS をフックするための何かを与えるには素晴らしいのですが、それ以外は意味的にもスタイル的にも意味を持たない空っぽのタグです。