css3 - Simple CSS query: vertically float blocks in a container -
this should simple, cannot figure out...
http://www.coelandscapes.co.uk/ quite old site, simple cms. i'm trying menu vertically align bottom of logo, can't use absolute (because number of elements might change).
does have ideas?
thanks
flexbox great vertically aligning items. add #menu style:
#menu { display: flex; flex-wrap: wrap; align-content: flex-end; width: 610px; height: 245px; padding: 0 0 0 12px; } you might have add vendor prefixes depending on browser want support: http://caniuse.com/#search=flex
Comments
Post a Comment