esr360 / Kayzen-GS

Kayzen-GS is a powerful framework for building responsive grid systems for the web
http://kayzen.gs
MIT License
29 stars 3 forks source link

vertical-align not working in FF40 #5

Closed visualcookie closed 8 years ago

visualcookie commented 9 years ago

Somehow vertical alignment of columns won't work in FF40.

visualcookie commented 9 years ago

I removed display: table !important; from the .row and set it to display: block !important; which also seems to work cross browser.

esr360 commented 9 years ago

If you change the display: table; to display: block;, you may find that if you use certain fonts the column widths do not totally add up to 100%. This was at least the initial reason for using display: table;, but since then, the letter-spacing property on the row element has increased from some small magic number to -1em, which may now render the display: table; property redundant, which would be fantastic if so. I'll definitely do some testing.