Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <div class="main" *ngFor="let hero of heros">
  2. <div class="child"><mat-checkbox color='primary'>{{hero.name}}</mat-checkbox></div>
  3. </div>
  4.  
  5. .main {
  6. width: 90%;
  7. list-style-type: none;
  8. margin: 0.5em;
  9. padding: 0.5em;
  10. display: flex;
  11. flex-wrap: wrap;
  12. }
  13.  
  14. .child {
  15. width: 400px;
  16. }
  17.  
  18. heros = [
  19. {id: 1, name: 'Superman'},
  20. {id: 2, name: 'Batman'},
  21. {id: 5, name: 'BatGirl'},
  22. {id: 3, name: 'Robin'},
  23. {id: 4, name: 'Flash'}
  24. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement