Is it possible to change width of tab symbol in textarea?

HtmlCssTextareaWhitespace

Html Problem Overview


By default tab symbol in textarea equals to the width of 8 spaces. Is it possible to change this value to 4 for example?

I am mostly interested in using this in Chrome browser.

Html Solutions


Solution 1 - Html

You can use the following css for Firefox 4.0+, Chrome 21+ and Opera 10.6+

textarea,
pre {
    -moz-tab-size : 4;
      -o-tab-size : 4;
         tab-size : 4;
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionsergView Question on Stackoverflow
Solution 1 - HtmlMikeView Answer on Stackoverflow