Html程序  |  32行  |  727 B

<!--
  -- Copyright (c) 2013 The Chromium Authors. All rights reserved.
  -- Use of this source code is governed by a BSD-style license that can be
  -- found in the LICENSE file.
  -->

<polymer-element name="kb-row">
  <template>
    <style>
      @host {
        * {
           -webkit-box-flex: 1;
           display: -webkit-box;
           text-align: center;
           margin-right: 0.25em;
           margin-top: 0.25em;
        }
        *:last-of-type {
           margin-bottom: 0.25em;
        }
      }
      content::-webkit-distributed(kb-key) {
        -webkit-flex: 1 auto;
      }
    </style>
    <content select="*"></content>
  </template>
  <script>
    Polymer('kb-row');
  </script>
</polymer-element>