# Card

The card component relies on the [jQuery matchHeight plugin](http://brm.io/jquery-match-height/) to vertically size the cards on the fly:

```
$(function() {
  $('.card').matchHeight({
    byRow: true,
    property: 'height',
    target: null,
    remove: false
  });
});
```
