Are there any hacks for max-width:-webkit-fit-content; for ie 8?
max-width:-webkit-fit-content;
Trying to get a child div to not take up the whole width of the parent and this works well
From demosthenes.info, I learned I can simply use
display: table;
instead of
width: fit-content;
Check the link however about problems with whitespaces. It does not apply to my case, and simply replacing width: fit-content with display: table solved my problem quite easily.