mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-03-22 19:05:56 -04:00
Fix GH-128 again: use table layout for IE 9
This commit is contained in:
parent
bfaccaaed4
commit
b1694c1adc
1 changed files with 12 additions and 1 deletions
|
@ -5,13 +5,24 @@
|
|||
flex-wrap: nowrap;
|
||||
justify-content: space-between;
|
||||
|
||||
.ie9 & {
|
||||
display: table;
|
||||
margin: 0 -20px 20px -20px;
|
||||
min-width: 100%;
|
||||
border-spacing: 20px 0;
|
||||
}
|
||||
|
||||
.box {
|
||||
display: inline-block;
|
||||
width: calc(60% - 20px);
|
||||
|
||||
.ie9 & {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
}
|
||||
}
|
||||
|
||||
.news {
|
||||
display: inline-block;
|
||||
width: 40%;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue