📌  相关文章
📜  之间的区别<div>和<span>HTML 中的标记</span>

📅  最后修改于: 2021-11-08 06:32:54             🧑  作者: Mango

标签(

)都用于表示网页的一部分,
标签用作网页的块部分, 标签用作网页的内联部分,如以下:

A Computer Science Portal for Geeks GeeksforGeeks

HTML

标签: div 标签被称为 Division 标签。 div 标签在 HTML 中用于划分网页上的内容,如(文本、图像、页眉、页脚、导航栏等)。 Div 标签有开始(
)和结束(
)标签,必须关闭标签。我们知道 Div 标签是一个块级标签。在这个例子中,div 标签包含整个宽度。每次都会在新行上显示 div 标签,而不是在同一行上。

  • 例子:
    
    
      
    
        Div tag
          
        
    
      
    
        
    div tag
        
    div tag
        
    div tag
        
    div tag
      
  • 输出:

HTML 标签: HTML span 元素是内联元素和内容的通用内联容器。它用于为样式目的对元素进行分组(通过使用 class 或 id 属性)。当没有其他语义元素可用时使用它的更好方法。 span 标签与 div 标签非常相似,但 div 是块级标签,span 是内联标签。

  • 例子:
    
    
      
    
        span tag
    
      
    
        

    Welcome To GFG

                

              GeeksforGeeks is A Computer Science Portal          where you can          Publish your own articles          and share your knowledge with the world!!     

      
  • 输出:

标签的区别:

The
tag is a block level element.
The tag is an inline element.
It is best to attach it to a section of a web page. It is best to attach a CSS to a small section of a line in a web page.
It accepts align attribute. It does not accept align attribute.
This tag should be used to wrap a section, for highligting that section. This tag should be used to wrap any specific word that you want to highlight in your webpage.

HTML 是网页的基础,用于通过构建网站和 Web 应用程序进行网页开发。您可以按照此 HTML 教程和 HTML 示例从头开始学习 HTML。