Table of Contents
HTML tags are supposed to give meaning to the content inside, but not in the case with div and span tags. They exist mostly to be able to apply CSS styles or target with JavaScript by applying a class or id attribute to them. Here we will learn the difference between div and span tags, and how to use them in your HTML pages.
Div vs Span
So what is the difference between div and span tags? The difference between div and span tags is that div tags can contain other HTML tags, while span tags cannot. div tags are used to create sections of content, while span tags are used to create inline text.
Division Tag
The div tag represents a generic container. The reason why it is a container is because it defaults to a block. As a block-level element, it starts on its own new line, similar to how p tags work. The div tag is also used to create sections of content.
HTML<!DOCTYPE html>
<html>
<head>
<title>Div</title>
</head>
<body>
<div>Division 1</div>
<div>Division 2</div>
<div>Division 3</div>
</body>
</html>
Dividers are block elements.
Span Tag
The span tag accomplishes the same thing as a div tag except that it is an inline element, which essentially means that it wraps content but remains inside the same line, and does not start on its own line.
This means you can do something like this:
HTML<!DOCTYPE html>
<html>
<head>
<title>Span</title>
</head>
<body>
<p>The <span class="space">Solar System</span> is a cool place.</p>
</body>
</html>
Span are inline elements.
You can now apply styles to your space class and it will only affect the text "Solar System".
Conclusion
In general, these tags should be used as rarely as possible, as they do not describe the content inside them at all. Whenever possible, and when it makes sense, use alternative tags to give meaning to the content between the tags.
Resources
Getting Started with Express
Getting Started with Electron
How to Set Up Cron Jobs in Linux
How to deploy a .NET app using Docker
Best Visual Studio Code Extensions for 2022
How to build a Discord bot using TypeScript
How to deploy a MySQL Server using Docker
How to deploy a Node app using Docker
Using Puppeteer and Jest for End-to-End Testing
Getting User Location using JavaScript's Geolocation API
Learn how to build a Slack Bot using Node.js
Getting Started with React
