CSS वर्ड-स्पेसिंग प्रॉपर्टी का उपयोग किसी तत्व के शब्दों के बीच की जगह को निर्दिष्ट करने के लिए किया जाता है।
सिंटैक्स
CSS वर्ड-स्पेसिंग प्रॉपर्टी का सिंटैक्स इस प्रकार है -
Selector {
word-spacing: /*value*/
} उदाहरण
निम्नलिखित उदाहरण CSS वर्ड-स्पेसिंग गुण को दर्शाते हैं -
<!DOCTYPE html>
<html>
<head>
<style>
div {
display: flex;
float: left;
padding: 10px;
background-color: salmon;
}
div > div {
word-spacing: 30px;
width: 340px;
height: 140px;
border-radius: 5%;
box-shadow: inset 0 0 15px blueviolet;
}
</style>
</head>
<body>
<div>
<div>
Magento is an open source E-commerce software, created by Varien Inc., which is useful for
online business. It has a flexible modular architecture and is scalable with many control
options that is helpful for users.</div>
</div>
</body>
</html> आउटपुट
यह निम्न आउटपुट देता है -

उदाहरण
<!DOCTYPE html>
<html>
<head>
<style>
q {
display: flex;
padding: 10px;
word-spacing: 6em;
background-color: orange;
font-size: 1.2em;
}
</style>
</head>
<body>
<h2>What is Java?</h2>
According to Java's official documentation,
<hr>
<q cite="https://www.java.com/en/download/faq/whatis_java.xml">Java is a programming language and computing platform first released by Sun Microsystems in 1995.</q>
</body>
</html> आउटपुट
यह निम्न आउटपुट देता है -
