Comments on: tab-size https://css-tricks.com Tips, Tricks, and Techniques on using Cascading Style Sheets. Sun, 01 Sep 2019 11:09:06 +0000 hourly 1 https://wordpress.org/?v=6.1.1 By: Jass https://css-tricks.com/almanac/properties/t/tab-size/#comment-1751125 Sun, 01 Sep 2019 11:09:06 +0000 http://css-tricks.com/?page_id=16278#comment-1751125 I don’t understand why the first demo is not working for me (FF 69-70), while the other two work (the same browser)

]]>
By: Siva https://css-tricks.com/almanac/properties/t/tab-size/#comment-1599280 Sun, 24 Jan 2016 18:00:07 +0000 http://css-tricks.com/?page_id=16278#comment-1599280 How do i add a tab space for the ordered/unordered list?

Header
left
right
footer

    <h1>Header with H1.</h1>
    <p>paragraphsparagraphsparagraphsparagraphsljslfdja
    dflksfjljsdfjlj
    fljsdfljasflkjfsdflsdf;kjdfa
    ljasfljfalsjfljljljjjljsdf
    ;alkdf;asdfka;lsfdk
    asd'kf;laskdf;k;lka
    ljdfa
    lkfja;lfjasdfjasd;fj;
    iopejrlkjdfpiasfl;kjpioerop</p>
    <p>
    <h2>Header with H2.</h2>
    </p>
    Ordered List
        <ol class="search";>
            <li>One</li>
            <li>Two</li>
            <li>Three</li>
            <li>Four</li>
        </ol>
    <p>
    <h3>Header With H3.</h3>
    Unordered list
        <ul class="search";>
            <li>One</li>
            <li>Two</li>
            <li>Three</li>
            <li>Four</li>
        </ul>
    </p>
    <p></p>
    </body>
]]>
By: Joshua Sandoval https://css-tricks.com/almanac/properties/t/tab-size/#comment-1583264 Sun, 29 Jun 2014 16:27:11 +0000 http://css-tricks.com/?page_id=16278#comment-1583264 This property actually works perfectly fine on iOS7. ( tested on iOS 7.1.1 )

]]>
By: Mathias Bynens https://css-tricks.com/almanac/properties/t/tab-size/#comment-312772 Fri, 22 Mar 2013 08:22:50 +0000 http://css-tricks.com/?page_id=16278#comment-312772 Quick note regarding the suggested polyfill: by (re)setting .innerHTML, any event handlers bound to descendant elements will be destroyed.

This applies to Dave’s plugin, too.

]]>
By: Dave Stewart https://css-tricks.com/almanac/properties/t/tab-size/#comment-178954 Tue, 26 Jun 2012 12:25:14 +0000 http://css-tricks.com/?page_id=16278#comment-178954 I recently created a jQuery plugin to correctly display tabbed content in browsers that don’t currently support tab-width:

https://github.com/davestewart/jquery-plugins/tree/master/tabSize

It uses the CSS3 property tab-size if available, but if not, it *correctly* converts tabs to spaces, including those tabs which do not take up a whole tab width, aka columns.

]]>