# iron-collapse `iron-collapse` creates a collapsible block of content. By default, the content will be collapsed. Use `opened` or `toggle()` to show/hide the content. ```html
Content goes here...
``` ```javascript toggle: function() { this.$.collapse.toggle(); } ``` `iron-collapse` adjusts the height/width of the collapsible element to show/hide the content. So avoid putting padding/margin/border on the collapsible directly, and instead put a div inside and style that. ```html
Content goes here...
```