288
Polymer Iron Flex Layout
The <iron-flex-layout> element is used to provide CSS flexible box layout. It is also known as flexbox.
You can use flexbox in two different ways:
- Layout classes: The layout class is a stylesheet which provides certain rules of class-based flexbox where the layout properties are directly defined in the markup.
- Custom CSS mixins: It is a stylesheet which contains custom CSS mixins, which can be applied inside a CSS rule with the help of @apply function.
Example
Open command prompt and go to your project folder to implement iron-flex-layout element by using the following command:
Now, you can import the iron-flex-layout file in your index.html using the following command:
Output:
Next TopicIron Form