Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <!-- * * * * * * <inline-nav> * * * * * * -->
  <template id="inline-nav-template">
    <style>
      :host {
        display: block;
      }
      nav {
        display: inline-flex;
      }
    </style>
    <nav>
      <content></content>
    </nav>
  </template>
  <script>
  window.InlineNav = document.registerElement('inline-nav', {
    prototype: Object.create(HTMLElement.prototype, {
      createdCallback: { value: function() {
        var template = document.getElementById('inline-nav-template');
        this.createShadowRoot().innerHTML = template.innerHTML;
      }}
    })
  });
  </script>
  <inline-nav>
    <a href="#">One</a>
    <a href="#">Two</a>
    <a href="#">Three</a>
  </inline-nav>
  <!-- * * * * * * <inline-tabs> * * * * * * -->
  <template id="inline-tabs-template">
    <style>
      :host::shadow ::content > * {
        border: 1px solid;
        margin: .5em;
        padding: .5em;
      }
    </style>
    <shadow></shadow>
  </template>
  <script>
  window.InlineTabs = document.registerElement('inline-tabs', {
    prototype: Object.create(HTMLElement.prototype, {
      createdCallback: { value: function() {
        // Call super.
        window.InlineNav.prototype.createdCallback.call(this);
        var template = document.getElementById('inline-tabs-template');
        this.createShadowRoot().innerHTML = template.innerHTML;
      }}
    })
  });
  </script>
  <inline-tabs>
    <a href="#">One</a>
    <a href="#">Two</a>
    <a href="#">Three</a>
  </inline-tabs>
  
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers