Skip to content

Commit 3b782ba

Browse files
committed
[css-flexbox] Remove extraneous rule from example
1 parent 9bf9551 commit 3b782ba

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

css-flexbox/Overview.bs

-4
Original file line numberDiff line numberDiff line change
@@ -1198,10 +1198,6 @@ Display Order: the 'order' property</h3>
11981198
.tabs {
11991199
display: flex;
12001200
}
1201-
.tabs > * {
1202-
min-width: min-content;
1203-
/* Prevent tabs from getting too small for their content. */
1204-
}
12051201
.tabs > .current {
12061202
order: -1; /* Lower than the default of 0 */
12071203
}

css-flexbox/Overview.html

+1-5
Original file line numberDiff line numberDiff line change
@@ -2018,7 +2018,7 @@ <h3 class="heading settled" data-level="5.4" id="order-property"><span class="se
20182018
exactly as if the flex items were reordered in the source document.</p>
20192019

20202020

2021-
<div class="example" id="example-6155594a"><a class="self-link" href="#example-6155594a"></a>
2021+
<div class="example" id="example-acefdb57"><a class="self-link" href="#example-acefdb57"></a>
20222022
The following figure shows a simple tabbed interface, where the tab for the active pane is always first:
20232023

20242024

@@ -2033,10 +2033,6 @@ <h3 class="heading settled" data-level="5.4" id="order-property"><span class="se
20332033
<pre class="lang-css">.tabs {
20342034
display: flex;
20352035
}
2036-
.tabs > * {
2037-
min-width: min-content;
2038-
/* Prevent tabs from getting too small for their content. */
2039-
}
20402036
.tabs > .current {
20412037
order: -1; /* Lower than the default of 0 */
20422038
}

0 commit comments

Comments
 (0)