Skip to content

Commit 6e14279

Browse files
committed
removing border-clip
1 parent ec839b9 commit 6e14279

1 file changed

Lines changed: 6 additions & 14 deletions

File tree

css3-gcpm/Overview.src.html

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,6 @@ <h3>Running elements</h3>
457457
</dl>
458458

459459
<p>The keywords have the same meaning as for the ''string()'' value.
460-
461460
<p>The ''element()'' value cannot be combined with any other values.
462461

463462
<div class="example">
@@ -544,9 +543,6 @@ <h2>Leaders</h2>
544543
<tr><td>leader(space)<td>leader(' ')<td>\0020
545544
</table>
546545

547-
<!--
548-
<p class=issue>Can leaders also be composed of images or SVG?
549-
-->
550546

551547
<!--
552548
<p class="issue">Some fonts may not have suitable glyphs for all
@@ -922,7 +918,6 @@ <h3>Turning elements into footnotes</h3>
922918
content: counter(footnote);
923919
}
924920
</pre>
925-
926921
<p>Here is one possible presentation of inline footnotes:
927922

928923
<pre>
@@ -953,10 +948,7 @@ <h3>The footnote area</h3>
953948
the page, but it can be positioned in other places.
954949

955950
<p class=issue>Should the footnote are be positiond using page floats
956-
or (fixed?) absolute positioning? Or both? In any case, it is
957-
unclear how to make the 'gr' unit refer to the column width of a
958-
multicol element. Which element, exactly? The one at the bottom of the
959-
page, of course. Hmm.
951+
or (fixed?) absolute positioning? Or both?
960952

961953
<p class=issue>
962954

@@ -989,6 +981,9 @@ <h3>The footnote area</h3>
989981
</pre>
990982
</div>
991983

984+
<p>Inside @footnote, the 'gr' unit is based on the oldest multicol
985+
element in the document.
986+
992987
<div class="example issue">
993988
<p>This code places the footnote area at the bottom of the right column:
994989

@@ -1050,15 +1045,12 @@ <h3>The footnote area</h3>
10501045
@footnote {
10511046
margin-top: 0.5em;
10521047
border-top: thin solid black;
1053-
border-length: 4em; /* border-clip: 4em */
1048+
border-clip: 4em;
10541049
padding-top: 0.5em;
10551050
}
10561051
</pre>
10571052

1058-
<p>The result of this code is that a footnote area will have
1059-
some margin above the border. Unlike normal borders, only part of the
1060-
border is visible due to the 'border-length' property. Underneath the
1061-
border, there will be padding.
1053+
<p>The result of this code is a footnote area separated from other content above it by margin, border and padding. Only 4em of the border is visible due to thte 'border-clip' property.
10621054

10631055
</div>
10641056

0 commit comments

Comments
 (0)