Is there a jQuery plugin with functionality of CSS3 flexible box model?
I want an element organization in my UI e开发者_开发百科quivalent to the results of following CSS:
#wall {
width: 100%;
display: box;
box-orient: horizontal;
box-align: stretch;
box-lines: multiple;
}
Unfortunately browsers do not seem to support box-lines: multiple;
, and some widely used browsers do not yet support flexible box model at all.
Is there an existing jQuery plugin that provides this functionality?
You asked about this a while ago, but in case you have not looked into this lately, this is a great tool to provide support for the Flexible Box Model in browser that don't support it yet.
Cross-browser support for the Flexible Box Model
精彩评论