Tillitsdone
down Scroll to discover
CSS tab-size Enhance Text Formatting and Readability
Learn how to use CSS tab-size to control tab width for better text formatting.

Options include numbers, lengths, and global values.

Improve your web design.
thumbnail

Introduction

The tab-size property in CSS lets you customize the width of tab characters, enhancing text readability, especially in preformatted text like <pre> and <textarea>. Introduced in August 2021, it’s widely supported across browsers, making it a reliable tool for developers and designers.

Specification

The tab-size property is defined in the CSS Text Module Level 3 specification, ensuring consistent behavior across browsers. This specification provides guidelines on how the property should be implemented.

Syntax and Values

The tab-size property allows you to define the width of tab characters using either a number or a length value.

Syntax

/* <number> values */
tab-size: 4;
tab-size: 0;
/* <length> values */
tab-size: 10px;
tab-size: 2em;
/* Global values */
tab-size: inherit;
tab-size: initial;
tab-size: revert;
tab-size: revert-layer;
tab-size: unset;

Values

  1. <number>:
    • Specifies a multiple of the space character width. Must be non-negative.
  2. <length>:
    • Sets the width using any valid CSS length unit (e.g., px, em). Must be non-negative.
  3. Global Values:
    • inherit, initial, revert, revert-layer, unset.

Formal Definition

Initial Value

The initial value is 8, meaning tabs are displayed as 8 spaces wide.

Applies to

Applies to block containers like <pre> and <textarea>.

Inherited

Yes, tab-size is inherited from the parent element.

Computed Value

Either the specified integer or an absolute length.

Animation Type

Supports animation, interpolated as real, floating-point numbers.

Examples and Usage

Expanding by Character Count

Set tab size to a specific number of spaces:

pre {
tab-size: 4; /* Set tab size to 4 characters wide */
}

Collapse Tabs

Remove indentation:

pre {
tab-size: 0; /* Remove indentation */
}

Default vs Custom Sizes

Compare default tab size with custom sizes:

HTML
<p>no tab</p>
<p>&#0009;default tab size of 8 characters wide</p>
<p class="custom-number">&#0009;custom tab size of 3 characters wide</p>
<p>&nbsp;&nbsp;&nbsp;3 spaces, equivalent to the custom tab size</p>
<p class="custom-length">&#0009;custom tab size of 50px wide</p>
CSS
body {
border: 1px solid red;
margin: 1rem;
}
p {
white-space: pre;
}
.custom-number {
tab-size: 3;
}
.custom-length {
tab-size: 50px;
}

Full Example

HTML
<!DOCTYPE html>
<html>
<head>
<title>tab-size Property</title>
<style>
#geeks {
-moz-tab-size: 6;
-o-tab-size: 6;
tab-size: 6;
}
body {
text-align: center;
}
h1 {
color: green;
}
</style>
</head>
<body>
<h1>Website</h1>
<h2>The tab-size Property</h2>
<pre id="Geeks1">
Website: A computer science portal
</pre>
</body>
</html>

Supported Browsers

  • Google Chrome 21.0+
  • Edge 79.0+
  • Firefox 91.0+
  • Opera 15.0+
  • Safari 7.0+

Browser Compatibility

The tab-size property is widely supported across various browsers, ensuring consistent web designs:

BrowserVersionSupported
Google Chrome21.0+Yes
Microsoft Edge79.0+Yes
Mozilla Firefox91.0+Yes
Opera15.0+Yes
Safari7.0+Yes

For the latest compatibility info, check MDN Web Docs.

Related Properties

Here are some related CSS properties to enhance text formatting:

  1. white-space:

    • Controls how whitespace is handled.
    • Example values: normal, pre, nowrap, pre-wrap, pre-line.
  2. overflow-wrap:

    • Specifies if the browser should insert line breaks within words.
    • Example values: normal, break-word.
  3. text-indent:

    • Specifies the indentation of the first line of a block of text.
    • Example values: length, percentage.
  4. letter-spacing:

    • Adjusts the space between characters.
    • Example values: normal, length.
  5. word-spacing:

    • Adjusts the space between words.
    • Example values: normal, length.
  6. line-height:

    • Controls the space between lines of text.
    • Example values: normal, number, length, percentage.

Using these properties with tab-size enhances text formatting, making your content more readable and visually appealing.

FAQs

What is the tab-size property in CSS?

The tab-size property specifies the width of the tab character. It’s useful for preformatted text like code blocks.

How can I set a tab size of 4 spaces in CSS?

Use: tab-size: 4;.

Can tab-size be used with any text element?

It works best with elements that preserve whitespace, like <pre>.

What units can be used with tab-size?

You can use integers representing spaces or length units like px, em.

How does tab-size affect code formatting?

It adjusts the spacing of tab characters, making code more readable.

Which browsers support the tab-size property?

Most modern browsers support it, including Chrome, Edge, Firefox, Opera, and Safari.

Can tab-size be inherited from a parent element?

Yes, tab-size is inherited.

What is the default value of the tab-size property?

The default value is 8.

How can I animate the tab-size property?

tab-size supports animation, allowing for smooth transitions.

Is the tab-size property useful for non-preformatted text?

It’s most useful for preformatted text. For non-preformatted text, tab characters are usually collapsed.

How can I ensure consistent tab sizes across different browsers?

Use the tab-size property along with other CSS properties like white-space to maintain consistent tab sizes.

Example

pre {
white-space: pre;
tab-size: 4;
}

By using these properties together, you can control the formatting and appearance of your text, making it both informative and visually appealing.

For more details, check out WebsiteUrl.

Get in Touch
Thank you for your interest in Tillitsdone! Whether you have a question about our services, want to discuss a potential project, or simply want to say hello, we're here and ready to assist you.
We'll be right here with you every step of the way.
Contact Information
rick@tillitsdone.com+66824564755
Find All the Ways to Get in Touch with Tillitsdone - We're Just a Click, Call, or Message Away. We'll Be Right Here, Ready to Respond and Start a Conversation About Your Needs.
Address
9 Phahonyothin Rd, Khlong Nueng, Khlong Luang District, Pathum Thani, Bangkok Thailand
Visit Tillitsdone at Our Physical Location - We'd Love to Welcome You to Our Creative Space. We'll Be Right Here, Ready to Show You Around and Discuss Your Ideas in Person.
Social media
Connect with Tillitsdone on Various Social Platforms - Stay Updated and Engage with Our Latest Projects and Insights. We'll Be Right Here, Sharing Our Journey and Ready to Interact with You.
We anticipate your communication and look forward to discussing how we can contribute to your business's success.
We'll be here, prepared to commence this promising collaboration.
Frequently Asked Questions
Explore frequently asked questions about our products and services.
Whether you're curious about features, warranties, or shopping policies, we provide comprehensive answers to assist you.