i am since a Week that i to want this problem to solve , but every time i come this problem…
every time change my layout from Firefox (last image…)…
display: flex;
display: grid; // this wins
display: grid;
display: flex: // this wins
i have to try as you tell me and change nothing…
can you please tell me , how can to do without the layout from the Firefox to change… i will to show on Firefox identical as now to show on my Website…
Firefox supports grid and flex
IE11 supports grid and flex
If you want IE11 to only use flex and Firefox to only use grid, you generally need to find out what browser someone is using and serve them a different stylesheet.
Autoprefixer is a tool that automatically adds browser prefixes. It is the correct tool for this job, as it will automatically generate correct grid prefixes for IE11 (note, I need to emphasise that grid works in IE10 and 11, with only slight caveats, and I don’t understand why you’re trying to use flex instead).
But that line of code isn’t CSS. I assume it is a command to a specific program to use Autoprefixer process the CSS a specific way. If you have no idea what it is or what it does, there’s a big issue there
If you want IE11 to only use flex and Firefox to only use grid, you generally need to find out what browser someone is using and serve them a different stylesheet.
Can you please give a example how to does it ?
Autoprefixer is a tool that automatically adds browser prefixes. It is the correct tool for this job, as it will automatically generate correct grid prefixes for IE11 (note, I need to emphasise that grid works in IE10 and 11, with only slight caveats, and I don’t understand why you’re trying to use flex instead).
what Autoprefixer does , i know , last week a people give me this link …
but autoprefixer({ grid: true }) , to does , it is for me not clear…, now i loss it …