property-link-table-template.html 695 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
<!-- Copyright 2020 the V8 project authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file. -->
<head>
  <link href="./index.css" rel="stylesheet">
</head>

<style>
.properties td {
  vertical-align: top;
}
.properties > tbody > tr > td:nth-child(2n+1):after {
  content: ':';
14 15 16
 }
.properties > tbody > tr > td:nth-child(2n+1) {
  padding-right: 3px;
17
}
18 19 20 21 22 23 24 25 26

.properties > tbody > tr > td:nth-child(2n+2) {
  width: 100%;
}

.properties > tfoot {
  text-align: right;
}

27 28 29 30
.properties {
  min-width: 350px;
  border-collapse: collapse;
}
31 32 33 34

h3 {
  margin-block-start: 0em;
}
35 36 37 38 39
</style>

<div id="body">
  <div id="content"></div>
</div>