Skip to content

Commit 716fbcb

Browse files
committed
Corrected readme to include 4 and 6 bugs
1 parent 0d7bb29 commit 716fbcb

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

README.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,40 @@ div {
2020
}
2121
```
2222

23+
## bug [4](https://github.com/philipwalton/flexbugs/blob/master/README.md#4-flex-shorthand-declarations-with-unitless-flex-basis-values-are-ignored)
24+
### Input
25+
26+
```css
27+
.foo {
28+
flex: 1 1 0;
29+
}
30+
```
31+
32+
### Output
33+
34+
```css
35+
.foo {
36+
flex: 1 1 0%;
37+
}
38+
```
39+
40+
## bug [6](https://github.com/philipwalton/flexbugs/blob/master/README.md#6-the-default-flex-value-has-changed)
41+
### Input
42+
43+
```css
44+
.foo {
45+
flex: 1;
46+
}
47+
```
48+
49+
### Output
50+
51+
```css
52+
.foo {
53+
flex: 1 1 auto;
54+
}
55+
```
56+
2357
## bug [7](https://github.com/philipwalton/flexbugs#7-flex-basis-doesnt-account-for-box-sizingborder-box)
2458
### Input
2559

0 commit comments

Comments
 (0)