.container
  input#tab-1(type='radio', name='tabs', checked)
  input#tab-2(type='radio', name='tabs')
  input#tab-3(type='radio', name='tabs')
  input#tab-4(type='radio', name='tabs')
  .tabs
    label(for='tab-1') Really
    label(for='tab-2') Awesome
    label(for='tab-3') CSS-only
    label(for='tab-4') Tabs
  .content
    .tab
      h3 Lanyard belay parley spyglass.
      p
        | Parrel ho galleon handsomely cutlass piracy hang the jib smartly pirate. Hornswaggle come about boom execution dock quarter barque bilged on her anchor fire ship Cat o'nine tails. Swing the lead pinnace carouser hulk Sail ho hornswaggle blow the man down Buccaneer Arr. List lanyard brig squiffy sloop Sea Legs no prey, no pay barque trysail. Jack gun heave to haul wind hail-shot fore carouser broadside Yellow Jack.
      p
        | Provost jury mast gaff man-of-war lanyard haul wind overhaul yawl chase. Gunwalls quarterdeck square-rigged lad Corsair tackle weigh anchor line Sink me. Wherry swing the lead bilge rutters cable poop deck rope's end avast pirate. Marooned Barbary Coast main sheet gangway lad brig chantey gally crow's nest. Port sutler ahoy scurvy clipper bilge water reef sails American Main bring a spring upon her cable.
    .tab
      h3 Red ensign loaded to the gunwalls Davy Jones' Locker.
      p
        | Boatswain square-rigged rope's end fathom barkadeer gabion pinnace. Scuttle topgallant interloper bilge water Sea Legs hardtack league. Barbary Coast cackle fruit rigging poop deck quarterdeck bucko ahoy. Blimey topgallant Pieces of Eight ye landlubber or just lubber loaded to the gunwalls spike.

    .tab
      h3 Pirate Ipsum
      p
        | Pirate Ipsum from 
        a(href='http://idsgn.dropmark.com/107/1313404') here
        |.
      p
        | Sea Legs transom port spanker heave to prow chandler. Line scallywag cackle fruit swing the lead scuppers wherry lateen sail. Coxswain barkadeer code of conduct jack wench bring a spring upon her cable to go on account.
    .tab
      h3 Ho black jack prow
      p
        | Run a shot across the bow strike colors hang the jib man-of-war gun lookout Nelsons folly holystone jury mast skysail. Plunder jib Blimey run a rig scallywag lookout line tack Brethren of the Coast bilge water. Square-rigged sheet spyglass Sail ho barkadeer Privateer piracy plunder gun belaying pin. Splice the main brace gaff grog clipper fore Plate Fleet scourge of the seven seas me lanyard yardarm.
      p
        | Lad gangway league draught Spanish Main tack gally flogging handsomely prow. Barbary Coast pinnace lad scuttle fathom shrouds pirate wherry interloper yo-ho-ho. Mizzenmast gibbet hang the jib smartly Admiral of the Black yo-ho-ho square-rigged avast code of conduct bilged on her anchor. Keel bilge rat hang the jib lugger reef driver trysail Nelsons folly schooner wherry. 
      p
        | Jib capstan boatswain rutters scuttle lugsail nipper starboard loot hail-shot. Transom barque hearties chantey skysail gunwalls wherry Letter of Marque blow the man down landlubber or just lubber. Bounty rum Buccaneer wench draft bucko chantey ho Sink me hogshead. Blow the man down keel log trysail jolly boat pinnace come about hearties grapple nipperkin.
      p
        | Take a caulk dance the hempen jig Cat o'nine tails mizzen lateen sail pink aye to go on account warp bowsprit.
View Compiled
@import 'https://fonts.googleapis.com/css?family=Roboto:400,700';

$tabs: 4;
$color: #242B36;
$brand: #D22C3F;

*, :before, :after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(#000,0);
}

body {
  background: $brand;
  font-family: Roboto;
}

input[name="tabs"] {
  display: none;
  @for $i from 1 through $tabs {
    &#tab-#{$i}:checked {
      ~ .content .tab:nth-of-type(#{$i}) {
        display: inline-block;
      }
      ~ .tabs label:nth-child(#{$i}) {
        color: #242b36;
        &:after {
          width: calc(100% - 40px);
          transition: .3s;
        }
      }
    }
  }
}

.tabs {
  box-shadow: 0 20px 50px -25px rgba(0, 0, 0, .3);
  overflow-X: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  white-space: nowrap;
  label {
    display: inline-block;
    padding: 18px;
    position: relative;
    color: lighten($color, 60%);
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    &:after {
      content: '';
      background: $brand;
      width: 0;
      height: 4px;
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      transition: .1s;
    }
  }
}

.container {
  background: #FFF;
  width: 90%;
  border-radius: 3px;
  box-shadow: 0 50px 75px -25px rgba(0, 0, 0, .3);
  margin: 25px auto;
  overflow: hidden;
  .tab {
    display: none;
    background: #F6F6F6;
    padding: 0 20px;
  }
}
View Compiled

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

  1. //cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js