Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我有少量文本需要添加到网页中,它们是否应该始终在<p>标签中?还是可以偶尔将它们放在 div 中?
<p>
<div>'s 应该用于布局和定位目的,而不是用于存储文本。
<div>
在这种情况下,使用<p>标签在语义上是正确的——同样,语义上正确的页面由于各种原因(例如爬虫如何有效地解析您的网站等)在搜索引擎中的排名往往更高。
使用“p”标签对文本进行排序是更好的选择。如果要将特定样式应用于布局,可以将“p”标签放在“div”标签内。如果要保留文本的格式,可以使用“pre”标签。