Span tag in HTML is considered as an inline element. It is similar to the div tag, but the div tag is purposely used for block-level elements, whereas the span is used for inline elements. It’s mainly used whenever a user wants to do a grouping of the inline elements into their code structure. Span tag in HTML is used to give style to particular contents by using elements class or id attribute. It’s not possible to do visual change by itself using the span tag in the HTML document. It works as an inline tag in the HTML document. Using the span tags in your code helps to reduce code and HTML attributes.
Syntax with Example
The syntax for defining a span tag is as follows:
Syntax:
<span class=""> Contents </span>
- As shown above syntax text enclosed within opening and closing tag is considered as span attribute.
- This is mainly used to group of inline elements. It helps to minimalize our code in an HTML document.
- It works similarly to the div tag, but a major difference is div is worked as a block-level element, whereas span tag works as an inline tag in HTML.
- The span tag is not able to provide visual change on its own.
- It works on tag like , , ,
, , and many more. - This tag is not able to create a line break, but it gives a chance to the user to make things separate from other elements. So it’s possible to do changes with only on selected text rather than doing change with all over code.
- It only takes as much as width required, rather than occupying the whole available width in the container. The best example of a span tag is attribute and image. It uses containers for some text showing the use of span tags.
- It doesn’t require some specific attributes in the coding; with the help of some common CSS and classes, we can define a span tag.
- We can highlight some specific text, apply a background color to the text, and add a background image to the text using the span tag of HTML.
- It’s also possible to change the font of the text using the span tag. It will help responsible for changing font size, color, background color, font style, etc.
Example:
<title>Span tag in HTML </title> <style> .demo { color: blue; font-size: 200%; position: relative; top: 5px; } </style> <p><span class="demo">О</span>Pride make us artificial and Humility make us real.</p> <p>True fact about life </p>
Output:
- Span tag doesn’t have any specific attribute; like other tags, it also supports global attributes and event attributes.
Properties of Span Tag in HTML
Here are some properties to apply styling with . Those are as follows:
- CSS font-style: It is used to apply styling to the given text. The text should be normal, italic, initial, inherit, etc.
- CSS font-family: It is used to apply different font types from a given list to specific text.
- CSS font-size: It’s helpful to set the font size to the text.
- CSS font-weight: This property used to set font which will be either bold or thick.
- CSS text-transform: It will make text capitalization.
- CSS text-decoration: This property used to decorate text in the form of text-decoration line, text-decoration color, etc.
- CSS color: This property of the span tag used to color the text content and text decorations.
- CSS background-color: This is a useful property to set the background color to the element.
- CSS text-shadow: This property allows the user to add shadow to the text.
- CSS text-align-last: It will help to do the alignment of the text.
- CSS word-spacing: This property in the span tag used to manage spacing in between words.
- CSS white-space: This property helps us to handle white spaces inside the specified element.
- CSS line-height: It provides the height of the line in HTML code.
- CSS word-break: This property helps us to define where the actual line should be broken.
- CSS text-overflow: This is the most useful property of span tag, which helps us to identify overflowed contents that are not displayed that should signal to the user.
Examples of Span Tag in HTML
An example of the span tag in html is given below:
Example #1
Code:
<title>HTML Span Tag</title> <style> .imgdemo { padding-left:25px; background:url(./Content/data/2.jpg) no-repeat top left; display: inline-block; height: 150px; width: 150px; } </style> <!-- span tags with inline style/css --> <h2 id="Span-tag-with-text-color">Span tag with text color</h2> <span style="color:brown;"> Do those things which makes your soul happy </span> <br> <h2 id="Span-tag-with-background-color"> Span tag with background color</h2> <span style="background-color:lightblue;"> Everybody have natural beauty. Try look at your picture when you are a baby. Your eyes, eyebrows, lips, body. When you are smiling, crying, staring, etc. That it, you got it.</span> <br> <h2 id="Span-tag-with-background-image"> Span tag with background image</h2> <br> <span class="imgdemo" style="color: azure; font-size: 16px; font-display: block;"> Image as background</span>
Output:
Example #2
Code:
<!--Example 2--> <title>HTML Span Tag</title> <h2 id="Span-tag-Examples"> Span tag Examples</h2> <p>Good, Better, Best Never let it rest. <span style="color:crimson;"> "Till your good is better and your better is best" </span></p> <p>Everyday you have a choice -<span style="font-family: cursive; font-weight: 200; font- size: 18px;"> STAY THE SAME OR CHANGE </span> </p> <p>Whenever you see a successful person you only see the public glories, never the private sacrifices to reach them."<span style="background-color: aqua ; color:darkblue;"> "Opportunities don't happen, you create them" </span></p>
Output:
Example #3
Code:
<style> .spandemo { background:url(./Content/data/3.jpg) no-repeat top left; display: inline-block; padding-top: 20px; width: 1800px; height: 500px; } </style> <h2 id="Span-tag-for-image"> Span tag for image</h2> <br> <span class="spandemo" style="color: aliceblue; font-weight: bold;"> <p> Nature always wears<br> Color of SPIRIT. </p> <br> Heaven is under our feet <br>as well as over our heads <br> <p> Deep in their roots,<br>all flowers Keep the light </p> <p> My soul steers me<br> into nature's silence</p> </span>
Output:
Conclusion
From all the above information, we came to know that the tag in HTML is used to give styling to inline elements. One can group this styling attribute and specifies them inline. Span tag mainly used to arrange structural sections and proper layout sections on our webpage with the help of inline CSS.
The above is the detailed content of Span Tag in HTML. For more information, please follow other related articles on the PHP Chinese website!

本篇文章带大家了解一下HTML(超文本标记语言),介绍一下HTML的本质,HTML文档的结构、HTML文档的基本标签和图像标签、列表、表格标签、媒体元素、表单,希望对大家有所帮助!

不算。html是一种用来告知浏览器如何组织页面的标记语言,而CSS是一种用来表现HTML或XML等文件样式的样式设计语言;html和css不具备很强的逻辑性和流程控制功能,缺乏灵活性,且html和css不能按照人类的设计对一件工作进行重复的循环,直至得到让人类满意的答案。

总结了一些web前端面试(笔试)题分享给大家,本篇文章就先给大家分享HTML部分的笔试题(附答案),大家可以自己做做,看看能答对几个!

HTML5中画布标签是“<canvas>”。canvas标签用于图形的绘制,它只是一个矩形的图形容器,绘制图形必须通过脚本(通常是JavaScript)来完成;开发者可利用多种js方法来在canvas中绘制路径、盒、圆、字符以及添加图像等。

html5废弃了dir列表标签。dir标签被用来定义目录列表,一般和li标签配合使用,在dir标签对中通过li标签来设置列表项,语法“<dir><li>列表项值</li>...</dir>”。HTML5已经不支持dir,可使用ul标签取代。

在html中,document是文档对象的意思,代表浏览器窗口的文档;document对象是window对象的子对象,所以可通过“window.document”属性对其进行访问,每个载入浏览器的HTML文档都会成为Document对象。

html5支持boolean值属性;boolean值属性指是属性值为true或者false的属性,如input元素中的disabled属性,不使用该属性表示值为flase,不禁用元素,使用该属性可以不设置属性值表示值为true,禁用元素。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version
SublimeText3 Linux latest version

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
