From 647f2074063d41b629dfab8a38496793512fe635 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Fri, 29 Oct 2021 00:43:43 +0900 Subject: CSS Table 関係の文書の変換準備 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/css/empty-cells/index.html | 118 -------------------------------- files/ja/web/css/empty-cells/index.md | 118 ++++++++++++++++++++++++++++++++ 2 files changed, 118 insertions(+), 118 deletions(-) delete mode 100644 files/ja/web/css/empty-cells/index.html create mode 100644 files/ja/web/css/empty-cells/index.md (limited to 'files/ja/web/css/empty-cells') diff --git a/files/ja/web/css/empty-cells/index.html b/files/ja/web/css/empty-cells/index.html deleted file mode 100644 index 8e4030d657..0000000000 --- a/files/ja/web/css/empty-cells/index.html +++ /dev/null @@ -1,118 +0,0 @@ ---- -title: empty-cells -slug: Web/CSS/empty-cells -tags: - - CSS - - CSS プロパティ - - CSS 表 - - リファレンス -translation_of: Web/CSS/empty-cells ---- -
{{CSSRef}}
- -

CSS の empty-cells プロパティは、目に見える内容を持たない{{htmlelement("table", "表")}}のセルの、周囲の境界と背景を{{glossary("user agent", "ユーザーエージェント")}}がどのように描画するかを指定します。

- -
{{EmbedInteractiveExample("pages/css/empty-cells.html")}}
- - - -

このプロパティは、 {{cssxref("border-collapse")}} プロパティが separate の場合のみ効果があります。

- -

構文

- -
/* キーワード値 */
-empty-cells: show;
-empty-cells: hide;
-
-/* グローバル値 */
-empty-cells: inherit;
-empty-cells: initial;
-empty-cells: unset;
-
- -

empty-cells プロパティは、以下のキーワード値のうちの一つで指定します。

- -

- -
-
show
-
通常のセルのように、境界や背景を描くことを示すキーワードです。
-
hide
-
境界や背景を描かないことを示すキーワードです。
-
- -

- -{{csssyntax}} - -

- -

HTML

- -
<table class="table_1">
-  <tr>
-    <td>Moe</td>
-    <td>Larry</td>
-  </tr>
-  <tr>
-    <td>Curly</td>
-    <td></td>
-  </tr>
-</table>
-<br>
-<table class="table_2">
-  <tr>
-    <td>Moe</td>
-    <td>Larry</td>
-  </tr>
-  <tr>
-    <td>Curly</td>
-    <td></td>
-  </tr>
-</table>
-
- -

CSS

- -
.table_1 {
-  empty-cells: show;
-}
-
-.table_2 {
-  empty-cells: hide;
-}
-
-td,
-th {
-  border: 1px solid gray;
-  padding: 0.5rem;
-}
- -

結果

- -

{{ EmbedLiveSample('Examples', '100%', '200') }}

- -

仕様書

- - - - - - - - - - - - - - - - -
仕様書状態備考
{{SpecName('CSS2.1', 'tables.html#empty-cells', 'empty-cells')}}{{Spec2('CSS2.1')}} 
- -

{{cssinfo}}

- -

ブラウザーの対応

- -

{{Compat("css.properties.empty-cells")}}

diff --git a/files/ja/web/css/empty-cells/index.md b/files/ja/web/css/empty-cells/index.md new file mode 100644 index 0000000000..8e4030d657 --- /dev/null +++ b/files/ja/web/css/empty-cells/index.md @@ -0,0 +1,118 @@ +--- +title: empty-cells +slug: Web/CSS/empty-cells +tags: + - CSS + - CSS プロパティ + - CSS 表 + - リファレンス +translation_of: Web/CSS/empty-cells +--- +
{{CSSRef}}
+ +

CSS の empty-cells プロパティは、目に見える内容を持たない{{htmlelement("table", "表")}}のセルの、周囲の境界と背景を{{glossary("user agent", "ユーザーエージェント")}}がどのように描画するかを指定します。

+ +
{{EmbedInteractiveExample("pages/css/empty-cells.html")}}
+ + + +

このプロパティは、 {{cssxref("border-collapse")}} プロパティが separate の場合のみ効果があります。

+ +

構文

+ +
/* キーワード値 */
+empty-cells: show;
+empty-cells: hide;
+
+/* グローバル値 */
+empty-cells: inherit;
+empty-cells: initial;
+empty-cells: unset;
+
+ +

empty-cells プロパティは、以下のキーワード値のうちの一つで指定します。

+ +

+ +
+
show
+
通常のセルのように、境界や背景を描くことを示すキーワードです。
+
hide
+
境界や背景を描かないことを示すキーワードです。
+
+ +

+ +{{csssyntax}} + +

+ +

HTML

+ +
<table class="table_1">
+  <tr>
+    <td>Moe</td>
+    <td>Larry</td>
+  </tr>
+  <tr>
+    <td>Curly</td>
+    <td></td>
+  </tr>
+</table>
+<br>
+<table class="table_2">
+  <tr>
+    <td>Moe</td>
+    <td>Larry</td>
+  </tr>
+  <tr>
+    <td>Curly</td>
+    <td></td>
+  </tr>
+</table>
+
+ +

CSS

+ +
.table_1 {
+  empty-cells: show;
+}
+
+.table_2 {
+  empty-cells: hide;
+}
+
+td,
+th {
+  border: 1px solid gray;
+  padding: 0.5rem;
+}
+ +

結果

+ +

{{ EmbedLiveSample('Examples', '100%', '200') }}

+ +

仕様書

+ + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName('CSS2.1', 'tables.html#empty-cells', 'empty-cells')}}{{Spec2('CSS2.1')}} 
+ +

{{cssinfo}}

+ +

ブラウザーの対応

+ +

{{Compat("css.properties.empty-cells")}}

-- cgit v1.2.3-54-g00ecf