Skip to content

Commit 737b931

Browse files
CSS properties: intro sentence in values section part 3 (mdn#44936)
* add value intro sentence * Update files/en-us/web/css/reference/properties/font-language-override/index.md Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * revert one editing it elsewhere and don't want conflicts * merge --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 77ee105 commit 737b931

24 files changed

Lines changed: 46 additions & 37 deletions

File tree

files/en-us/web/css/reference/properties/anchor-name/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ anchor-name: unset;
2929

3030
### Values
3131

32-
This property is specified as a `<dashed-ident>` or the keyword `none`:
32+
This property is specified as a single value from the following list:
3333

3434
- `none`
3535
- : The default value. Setting `anchor-name: none` on an element means that it is not defined as an anchor element. If the element was previously defined as an anchor and associated with a positioned element, setting `anchor-name: none` disassociates the two.

files/en-us/web/css/reference/properties/box-sizing/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ box-sizing: revert-layer;
7474
box-sizing: unset;
7575
```
7676

77-
The `box-sizing` property is specified as a single keyword chosen from the list of values below.
78-
7977
### Values
8078

79+
This property is specified as one of the following keyword values:
80+
8181
- `content-box`
8282
- : This is the initial and default value as specified by the CSS standard. The {{Cssxref("width")}} and {{Cssxref("height")}} properties include the content, but does not include the padding, border, or margin. For example, `.box {width: 350px; border: 10px solid black;}` renders a box that is 370px wide.
8383

files/en-us/web/css/reference/properties/caret-animation/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ caret-animation: unset;
3535

3636
### Values
3737

38-
The `caret-animation` property is specified as one of the keyword values listed below.
38+
This property is specified as one of the following keyword values:
3939

4040
- `auto`
4141
- : The caret blinks on and off. This is the default (initial) value.

files/en-us/web/css/reference/properties/caret-color/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ caret-color: unset;
6464

6565
### Values
6666

67-
This property is specified as one `<color>` value or the keyword `auto`.
67+
This property is specified as a single value from the following list:
6868

6969
- `auto`
7070
- : Generally resolves to [`currentColor`](/en-US/docs/Web/CSS/Reference/Values/color_value#currentcolor_keyword), the {{cssxref("color")}} of the text that will be modified.

files/en-us/web/css/reference/properties/clip-rule/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ clip-rule: unset;
2828

2929
### Values
3030

31+
This property is specified as one of the following keyword values:
32+
3133
- `nonzero`
3234
- : For every point in the clipping mask's box, a ray is drawn in a random direction. Every time the ray intersects with any part of the clipping path, a tally is increased by one if the clipping path's part is moving from left to right across the ray, whereas it is decreased by one if the path part is moving right to left across the ray. If the final total of the tally is zero, the point is outside the path's shape. Otherwise, it's inside the path's shape.
3335

files/en-us/web/css/reference/properties/clip/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ clip: unset;
3333

3434
### Values
3535

36+
This property is specified as a single value from the following list:
37+
3638
- `rect()`
3739
- : A rectangle defined using a `rect()` function of the form `rect(<top>, <right>, <bottom>, <left>)`. The `<top>` and `<bottom>` values are offsets from the _inside top border edge_ of the box, while `<right>` and `<left>` are offsets from the _inside left border edge_ of the box — that is, the extent of the padding box.
3840

files/en-us/web/css/reference/properties/color/index.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,12 +110,10 @@ color: revert-layer;
110110
color: unset;
111111
```
112112

113-
The `color` property is specified as a single {{cssxref("&lt;color&gt;")}} value.
114-
115-
Note that the value must be a uniform color. It can't be a {{cssxref("gradient")}}, which is actually a type of {{cssxref("image")}}.
116-
117113
### Values
118114

115+
This property is specified as a single value from the following list:
116+
119117
- {{cssxref("&lt;color&gt;")}}
120118
- : Sets the color of the textual and decorative parts of the element.
121119
- [`currentColor`](/en-US/docs/Web/CSS/Reference/Values/color_value#currentcolor_keyword)

files/en-us/web/css/reference/properties/column-count/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ column-count: unset;
6868

6969
### Values
7070

71+
This property is specified as a single value from the following list:
72+
7173
- `auto`
7274
- : The number of columns is determined by other CSS properties, such as {{cssxref("column-width")}}.
7375
- {{cssxref("&lt;integer&gt;")}}

files/en-us/web/css/reference/properties/column-gap/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@ column-gap: unset;
7777

7878
### Values
7979

80+
This property is specified as a single value from the following list:
81+
8082
- `normal`
8183
- : For multi-column layout, resolves to `1em`; otherwise `0`. This is the default value.
8284
- {{CSSxRef("&lt;length&gt;")}}

files/en-us/web/css/reference/properties/column-height/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ column-height: unset;
3636

3737
### Values
3838

39+
This property is specified as a single value from the following list:
40+
3941
- `auto`
4042
- : The initial value. If the content container has a set height, the content columns will grow to that height, overflowing to the side if the content doesn't fit inside the container. If the content container does not have a set height, the content will be equally distributed between the columns generated inside the container.
4143
- {{cssxref("&lt;length>")}}

0 commit comments

Comments
 (0)