From c2d1b8b56c5a9f45f5ea9f5471c87d1b904f9087 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Sat, 30 Oct 2021 00:25:17 +0900 Subject: CSS Table 関係の文書を更新 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 2021/10/28 時点の英語版に同期 --- files/ja/web/css/empty-cells/index.md | 138 +++++++++++++++++----------------- 1 file changed, 67 insertions(+), 71 deletions(-) (limited to 'files/ja/web/css/empty-cells') diff --git a/files/ja/web/css/empty-cells/index.md b/files/ja/web/css/empty-cells/index.md index 8e4030d657..67e4ed0854 100644 --- a/files/ja/web/css/empty-cells/index.md +++ b/files/ja/web/css/empty-cells/index.md @@ -6,21 +6,22 @@ tags: - CSS プロパティ - CSS 表 - リファレンス + - recipe:css-property +browser-compat: css.properties.empty-cells translation_of: Web/CSS/empty-cells --- -
{{CSSRef}}
+{{CSSRef}} -

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

+**`empty-cells`** は CSS のプロパティで、{{htmlelement("table", "表")}}のセルが目に見える内容を持たない場合に、周囲の境界と背景を{{glossary("user agent", "ユーザーエージェント")}}がどのように描画するかを指定します。 -
{{EmbedInteractiveExample("pages/css/empty-cells.html")}}
+{{EmbedInteractiveExample("pages/css/empty-cells.html")}} - +このプロパティは、 {{cssxref("border-collapse")}} プロパティが `separate` であった場合のみ効果があります。 -

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

+## 構文 -

構文

- -
/* キーワード値 */
+```css
+/* キーワード値 */
 empty-cells: show;
 empty-cells: hide;
 
@@ -28,53 +29,59 @@ empty-cells: hide;
 empty-cells: inherit;
 empty-cells: initial;
 empty-cells: unset;
-
+``` + +`empty-cells` プロパティは、以下のキーワード値のうちの一つで指定します。 -

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

+### 値 -

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

+{{cssinfo}} + +## 形式文法 {{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 {
+## 例
+
+

表の空のセルの表示・非表示

+ +#### HTML + +```html + + + + + + + + + +
MoeLarry
Curly
+
+ + + + + + + + + +
MoeLarry
Curly
+``` + +#### CSS + +```css +.table_1 { empty-cells: show; } @@ -86,33 +93,22 @@ td, th { border: 1px solid gray; padding: 0.5rem; -}
+} +``` -

結果

+#### 結果 -

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

+{{ EmbedLiveSample('Showing_and_hiding_empty_table_cells', '100%', '200') }} -

仕様書

+## 仕様書 - - - - - - - - - - - - - - - -
仕様書状態備考
{{SpecName('CSS2.1', 'tables.html#empty-cells', 'empty-cells')}}{{Spec2('CSS2.1')}} 
+{{Specifications}} + +## ブラウザーの互換性 -

{{cssinfo}}

+{{Compat}} -

ブラウザーの対応

+## 関連情報 -

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

+- {{cssxref("border-collapse")}} +- [表のスタイル付け](/ja/docs/Learn/CSS/Building_blocks/Styling_tables) -- cgit v1.2.3-54-g00ecf