Skip to content

Commit 085a9be

Browse files
committed
[CSS2] Escape characters which need escaping for BSMD
1 parent 2bc6f48 commit 085a9be

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

css2/Overview.bs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2388,7 +2388,7 @@ consists of one or more digits "0" to "9". A <number> can either
23882388
be an <integer>, or it can be zero or more digits followed by a
23892389
dot (.) followed by one or more digits. Both integers and real numbers
23902390
may be preceded by a "-" or "+" to indicate the sign.
2391-
-0 is equivalent to 0 and is not a negative number.</p>
2391+
\-0 is equivalent to 0 and is not a negative number.</p>
23922392

23932393
<p>Note that many properties that allow an integer or real number as a
23942394
value actually restrict the value to some range, often to a
@@ -7494,7 +7494,7 @@ requires the top border edge to be <em>below</em> the float, i.e., 2em
74947494
lower. This means that clearance must be introduced. Accordingly, the
74957495
margins no longer collapse and the amount of clearance is set so that
74967496
clearance + margin-top = 2em, i.e., clearance = 2em - margin-top = 2em
7497-
- 3em = -1em.
7497+
\- 3em = -1em.
74987498
</div>
74997499

75007500
<p>When the property is set on floating elements, it results in a
@@ -8804,7 +8804,7 @@ elements is:</p>
88048804

88058805
<blockquote>
88068806
<p>'left' + 'margin-left' + 'border-left-width' + 'padding-left' + 'width'
8807-
+ 'padding-right' + 'border-right-width' + 'margin-right' + 'right' = width
8807+
\+ 'padding-right' + 'border-right-width' + 'margin-right' + 'right' = width
88088808
of containing block </p>
88098809
</blockquote>
88108810

@@ -9349,7 +9349,7 @@ dimensions must satisfy this constraint:</p>
93499349

93509350
<blockquote>
93519351
<p>'top' + 'margin-top' + 'border-top-width' + 'padding-top' + 'height'
9352-
+ 'padding-bottom' + 'border-bottom-width' + 'margin-bottom' + 'bottom'
9352+
\+ 'padding-bottom' + 'border-bottom-width' + 'margin-bottom' + 'bottom'
93539353
= height of containing block </p>
93549354
</blockquote>
93559355

@@ -15048,7 +15048,7 @@ table:
1504815048

1504915049
<blockquote>
1505015050
<p><var>row-width</var> = (0.5 * <var>border-width</var><sub>0</sub>)
15051-
+ <var>padding-left</var><sub>1</sub> + <var>width</var><sub>1</sub> +
15051+
\+ <var>padding-left</var><sub>1</sub> + <var>width</var><sub>1</sub> +
1505215052
<var>padding-right</var><sub>1</sub> +
1505315053
<var>border-width</var><sub>1</sub> +
1505415054
<var>padding-left</var><sub>2</sub> +...+

0 commit comments

Comments
 (0)