I have an element that is similar to a tag (because it has word-wrap: pre;) to display code on a website. The only problem is that the tab size is too large and causes the element to horizontally scroll often because it is of fixed width.

Is it possible to change the tab size?

link|improve this question

Similar to a tag? Or similar to a tab? – cLFlaVA Dec 12 '08 at 19:27
I think he probably meant "Similar to a <pre> tag" and the HTML tag disappeared. – Andrew Aug 23 '10 at 17:46
There is extension in Mozilla browser: developer.mozilla.org/en/CSS/-moz-tab-size – Eonil Jan 1 at 19:33
feedback

2 Answers

up vote 2 down vote accepted

You could replace tabs with spaces. Then you could control exactly the size of the indents.

link|improve this answer
feedback

We need some more clarity into your question, but are you perchance looking for the text-indent css property? You can set the indentation amount, e.g.:

<style type="text/css">
p {
  text-indent: 40px;
}
</style>
link|improve this answer
1  
text-indent only applies to the first line of text in the matching element(s): w3.org/TR/CSS2/text.html#indentation-prop – Andrew Aug 23 '10 at 17:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.