Tabs

You say you want a revolution
Well, you know
We all want to change the world

Yesterday
All my troubles seemed so far away
Now it looks as though they’re here to stay

Something in the way she moves
Attracts me like no other lover
Something in the way she woos me

I’d like to be under the sea
In an octopus’s garden in the shade
He’d let us in, knows where we’ve been
In his octopus’s garden in the shade
I’d ask my friends to come and see
In an octopus’s garden with me
I’d like to be under the sea
In an octopus’s garden in the shade

<div class="tabs">
    <fieldset class="tab">
        <legend class="tab__legend">
            <button class="tab__button" type="button">John</button>
        </legend>
        <div class="tab__content">
            <p>
                You say you want a revolution<br>
                Well, you know<br>
                We all want to change the world
            </p>
        </div>
    </fieldset>
    <fieldset class="tab tab--current">
        <legend class="tab__legend">
            <button class="tab__button" type="button">Paul</button>
        </legend>
        <div class="tab__content">
            <p>
                Yesterday<br>
                All my troubles seemed so far away<br>
                Now it looks as though they’re here to stay
            </p>
        </div>
    </fieldset>
    <fieldset class="tab">
        <legend class="tab__legend">
            <button class="tab__button" type="button">George</button>
        </legend>
        <div class="tab__content">
            <p>
                Something in the way she moves<br>
                Attracts me like no other lover<br>
                Something in the way she woos me
            </p>
        </div>
    </fieldset>
    <fieldset class="tab">
        <legend class="tab__legend">
            <button class="tab__button" type="button">Ringo</button>
        </legend>
        <div class="tab__content">
            <p>
                I’d like to be under the sea<br>
                In an octopus’s garden in the shade<br>
                He’d let us in, knows where we’ve been<br>
                In his octopus’s garden in the shade<br>
                I’d ask my friends to come and see<br>
                In an octopus’s garden with me<br>
                I’d like to be under the sea<br>
                In an octopus’s garden in the shade
            </p>
        </div>
    </fieldset>
</div>

Nested tabs

Lennon

McCartney

Harrison

Starr

<div class="tabs">
    <fieldset class="tab tab--current">
        <legend class="tab__legend">
            <button class="tab__button" type="button">Tab #1</button>
        </legend>
        <div class="tab__content">
            <div class="tabs">
                <fieldset class="tab tab--current">
                    <legend class="tab__legend">
                        <button class="tab__button" type="button">John</button>
                    </legend>
                    <div class="tab__content">
                        <p>Lennon</p>
                    </div>
                </fieldset>
                <fieldset class="tab">
                    <legend class="tab__legend">
                        <button class="tab__button" type="button">Paul</button>
                    </legend>
                    <div class="tab__content">
                        <p>McCartney</p>
                    </div>
                </fieldset>
            </div>
        </div>
    </fieldset>
    <fieldset class="tab">
        <legend class="tab__legend">
            <button class="tab__button" type="button">Tab #2</button>
        </legend>
        <div class="tab__content">
            <div class="tabs">
                <fieldset class="tab tab--current">
                    <legend class="tab__legend">
                        <button class="tab__button" type="button">George</button>
                    </legend>
                    <div class="tab__content">
                        <p>Harrison</p>
                    </div>
                </fieldset>
                <fieldset class="tab">
                    <legend class="tab__legend">
                        <button class="tab__button" type="button">Ringo</button>
                    </legend>
                    <div class="tab__content">
                        <p>Starr</p>
                    </div>
                </fieldset>
            </div>
        </div>
    </fieldset>
</div>