css - box-align not working in Chrome or Firefox -
i'm trying set box-align
either start
or baseline
columns resize way want, won't stretch same height, isn't working in chrome of firefox reason. works fine in ie11.
demo (shrink page less 1280px see take effect): http://www.weblinxinc.com/beta/hf-racquet-fitness-club/demo/site/internal.htm
result in ie11:
result in chrome:
after consulting w3c's documentation, discovered there's property align-items
, solved problem:
-webkit-flex-align: baseline; -webkit-align-items: baseline; -ms-flex-align: baseline; align-items: baseline;
Comments
Post a Comment