Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Web/CSS/column-rule-color を更新 #25358

Merged
merged 1 commit into from
Jan 11, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions files/ja/web/css/column-rule-color/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
---
title: column-rule-color
slug: Web/CSS/column-rule-color
l10n:
sourceCommit: 5f13cbe7517ce96deeb521d4c8e6923266a22913
---

{{CSSRef}}
Expand All @@ -14,14 +16,15 @@ slug: Web/CSS/column-rule-color
```css
/* <color> 値 */
column-rule-color: red;
column-rule-color: rgb(192, 56, 78);
column-rule-color: rgb(192 56 78);
column-rule-color: transparent;
column-rule-color: hsla(0, 100%, 50%, 0.6);
column-rule-color: hsl(0 100% 50% / 60%);

/* グローバル値 */
column-rule-color: inherit;
column-rule-color: initial;
column-rule-color: revert;
column-rule-color: revert-layer;
column-rule-color: unset;
```

Expand All @@ -46,7 +49,7 @@ column-rule-color: unset;

#### HTML

```html
```html live-sample___setting_a_blue_column_rule
<p>
This is a bunch of text split into three columns. The `column-rule-color`
property is used to change the color of the line that is drawn between
Expand All @@ -56,7 +59,7 @@ column-rule-color: unset;

#### CSS

```css
```css live-sample___setting_a_blue_column_rule
p {
column-count: 3;
column-rule-style: solid;
Expand All @@ -80,4 +83,3 @@ p {

- {{cssxref("&lt;color&gt;")}} データ型
- 色に関する他のプロパティ: {{cssxref("color")}}, {{cssxref("background-color")}}, {{cssxref("border-color")}}, {{cssxref("outline-color")}}, {{cssxref("text-decoration-color")}}, {{cssxref("text-emphasis-color")}}, {{cssxref("text-shadow")}}, {{cssxref("caret-color")}}
- [CSS を使った HTML の要素への色の適用](/ja/docs/Web/CSS/CSS_colors/Applying_color)
Loading