CSS Introduction

CSS Tutorial What is CSS CSS Syntax CSS Selector How to include CSS CSS Comments

CSS Attributes

CSS Background CSS Border CSS Display CSS Float CSS Font CSS Color CSS Hover CSS Important CSS Line-height CSS Margin CSS Opacity CSS Filter CSS Images CSS Overflow CSS Padding CSS Position CSS Vertical align CSS White space CSS Width Word-wrap in CSS Box-shadow in CSS Text-transform in CSS CSS Outline CSS Visibility CSS Counters CSS Clear fix CSS Icons CSS Justify-content Text-decoration in CSS CSS Lists CSS nth selector CSS Sticky CSS Background-clip CSS Checkbox-style CSS Letter-spacing CSS Navigation bar CSS Overlay CSS Root CSS Specificity CSS Text-indent CSS Text-stroke CSS Zoom CSS Order CSS Descendent selector CSS Clip CSS calc() CSS Background-blend-mode CSS radio-button CSS Superscript and subscript CSS Text-effects CSS Text-align CSS Variables CSS Page-break-before CSS Page-break-inside CSS Page-break-after CSS Content property CSS Word-spacing CSS Animation CSS @keyframes rules CSS Pseudo-classes CSS Pseudo-elements CSS Radial-gradient CSS Translate CSS Gradients CSS z-index CSS Loaders CSS Units CSS Transition CSS Masking CSS Arrow CSS Pagination

Questions

What is Bootstrap CSS What is CSS used for How to center a table in CSS What is a CSS File How to center a button in CSS How to change background color in CSS How to change the font in CSS How to change font size in CSS How to resize an image in CSS How to get rid of bullet pioints in CSS Is CSS a programming language How to edit CSS in WordPress How to use google fonts in CSS How to create blinking text using CSS How to Set Space between the Flexbox Is CSS a Programming Language

Difference

Difference between HTML and CSS Grid Vs Flexbox in CSS Difference between CSS Grid and CSS Flexbox

Misc

Create a 3D text effect using HTML and CSS Hover condition for a:before and a:after in CSS Bem CSS Boder Types CSS Features of CSS Font Face CSS Image Overlay CSS B Tag CSS Carousel CSS CSS Arrow CSS Focus Flex Grow in CSS Bem CSS Features of CSS Font Face CSS Removing Underline from Link in CSS Width Property in CSS Radio Button in CSS

CSS Word-spacing

Word-spacing

The work-spacing property of CSS is applied to manage the space among the words. We can decrease or increase the space among the words by the use of this property.

It can modify the space among the words. This property is the same as the property letter-spacing. Rather than describing the space among the single character, it depicts the space among the words within the text’s piece.

Any large negative or positive value of word-spacing will create any word unreadable. When we use any larger positive value, it can cause the word’s view like any series of individual and unconnected words. A larger negative value can overlap multiple words to one another, which enables any word unrecognizable.

Syntax:

word-spacing: normal | length | initial | inherit;  

Property Values

normal: This value is used as a default value. It depicts any normal space (2.5em) among the words. This value describes the space, i.e., specified by a browser.

length: It describes any extra space among various words in the context of length (cm, em, px, pt, etc.). This value allows negative values.

initial: The initial property value sets the word spacing property to the default value.

inherit: This value is used to acquire the value from the parent component.

Let’s understand the concept with the help of two examples.

Example:1

<!DOCTYPE html>
<html>
<head>
<title> The word-spacing Property </title>
<style>
body
{
text-align: center;
}
#space
{
word-spacing: 40px;
}
p
{
color: green;
font-weight: bold;
font-size: 20px;
}
</style>
</head>
<body>  
<h1> CSS word-spacing Property </h1>  
<div> 
<h2> word-spacing: normal; </h2>  
<p>  
Welcome to this Page </p>  
</div> 
<div> 
<h2> word-spacing: 40px; </h2>  
<p id= "space"> Welcome to this Page </p>  
</div> 
</body>  
</html>

Output:

CSS Word-spacing

Example:2

<!DOCTYPE html>
<html>
<head>
<title> The word-spacing Property </title>
<style>
body
{
text-align: center;
}
#space
{
word-spacing: 2cm;
}
#space1
{
word-spacing: -50px;
}
#space2
{
word-spacing: initial;
}
p
{
color: green;
font-weight: bold;
font-size: 20px;
}
</style>
</head>
<body>  
<h1> CSS word-spacing Property </h1>  
<div> 
<h2> word-spacing: 2cm; </h2>  
<p id= "space">  
Welcome to this Page
</p>  
</div> 
<div> 
<h2> word-spacing: -50px; </h2>  
<p id= "space1">
Welcome to this Page
</p> 
<div> 
<h2> word-spacing: initial; </h2>  
<p id= "space2">  
Welcome to this Page
</p>  
</div>  
</div> 
</body>  
</html>

Output:

CSS Word-spacing