demo: 默认是这样的: 当我们点击更多按钮后,会以CSS3动画的方式展开剩余所有文字信息,如下动图: 下面我们看下关键的CSS代码,这个.active是如何自身无样式的: .box { max-height: 80px; transition: max-height .25s; overflow: hidden; } .box.active { max-height: 200px; } .active > .more { display: none; } more.onclick = fun…