You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -36,20 +36,20 @@ use crate::visualize::{Paint, Stroke};
36
36
/// トラックサイズは以下のいずれかです。
37
37
///
38
38
/// - `{auto}`: トラックはコンテンツに合わせた大きさになります。
39
-
/// It will be at most as large as the remaining space.
39
+
/// 残されたスペース全体まで大きくなります。
40
40
/// If there is more than one `{auto}` track width, and together they claim more than the available space, the `{auto}` tracks will fairly distribute the available space among themselves.
41
41
///
42
-
/// - A fixed or relative length (e.g. `{10pt}` or `{20% - 1cm}`): The track will be exactly of this size.
42
+
/// - A fixed or relative length (`{10pt}`や`{20% - 1cm}`など):トラックは厳密にその大きさになります。
43
43
///
44
44
/// - A fractional length (e.g. `{1fr}`): Once all other tracks have been sized, the remaining space will be divided among the fractional tracks according to their fractions.
45
-
/// For example, if there are two fractional tracks, each with a fraction of `{1fr}`, they will each take up half of the remaining space.
45
+
/// 例えば、if there are two fractional tracks, each with a fraction of `{1fr}`, they will each take up half of the remaining space.
@@ -105,7 +105,8 @@ use crate::visualize::{Paint, Stroke};
105
105
/// It also allows you to easily change the grid's appearance in one place.
106
106
///
107
107
/// ## Stroke styling precedence
108
-
/// There are three ways to set the stroke of a grid cell: through [`{grid.cell}`'s `stroke` field]($grid.cell.stroke), by using [`{grid.hline}`]($grid.hline) and [`{grid.vline}`]($grid.vline), or by setting the [`{grid}`'s `stroke` field]($grid.stroke).
/// When multiple of these settings are present and conflict, the `hline` and `vline` settings take the highest precedence, followed by the `cell` settings, and finally the `grid` settings.
110
111
///
111
112
/// Furthermore, strokes of a repeated grid header or footer will take precedence over regular cell strokes.
0 commit comments