0

When I use angular materials checkboxes like below and display view on the Internet Explorer 11 browser it displays all checkboxes on the same place instead of side by side horizontal. How can I fix that?

all checkboxes on the same place

This is part of html code:

        <div class="column-container">
          <div class="column" *ngFor="let nd of filteredNetworks">
            <md-checkbox [(ngModel)]="nd.Checked">
              {{nd.NetworkName}}
            </md-checkbox>
          </div>
        </div>
kenzolek
  • 344
  • 6
  • 24

1 Answers1

1

You have to include polyfills for IE support. Open polyfills.ts in your application and uncomment the polyfills required (Comment is present in file showing which all are required for IE).

Abdu Manas C A
  • 1,089
  • 1
  • 11
  • 19