line-height: 0vw;
to the pages body for responsive fonts size, see for example seaneking/postcss-responsive-type#15 or twbs/rfs#14 . When I try to use it with cssnano the vw
is stripped, which makes sense for all other cases but this one. Is there a workaround for this case and/or should I open a ticket for this ? (I checked the project's tickets and doc and found nothing mentioning it, sorry if it's documented somewhere)
gap
for grid
gap
and display: flex
if we have a browser without gap support for flexbox?
root
has child nodes [a, b, c]
, and you have other nodes d
and e
, then calling a.replaceWith(a, d, e)
results in root
having the children [d, e, b, c]
, not [a, d, e, b, c]
, as I would expect