Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们可以将这个现有的小提琴(解决方案)用于条形图并应用不同的高度值,
http://jsfiddle.net/RYBFF/1/
实际发生的是 bar 项目被锚定到 ul 容器的顶部,而当我们缩放项目时它应该被锚定到底部。
li.different { height: 80px !important; }
例如,将不同的类应用于列表项之一将证明该问题。
inline-block
float: left;
并最终为列表中的第一项添加一些边距。
vertical-align仅适用于内联或内联块元素。您的列表项是块元素。
vertical-align
小提琴