I am hava angular 4.4.4 application material 2.0.0-beta.12and I want to use a mat-expansion-panelmaterial construction .
This is my code:
           <mat-expansion-panel class="parametersPanel">
                    <mat-expansion-panel-header>
                        <mat-panel-title>
                            PARAMETERS
                        </mat-panel-title>
                    </mat-expansion-panel-header>
                    <table style="width:100%">
                        <tbody>
                            <tr class="parameterListItem">
                                <td class="icon"><img src="assets/images/alert.png"></td>
                                <td class="parameterName">Parameter 1</td>
                                <td class="parameterValue">Value</td>
                                <td class="unit">unit</td>
                            </tr>                        
                        </tbody>
                    </table>
            </mat-expansion-panel>
So it works well, but can I remove the token in mat-expansion-panel-body, which has, from the browser margin: 0 24px 16px;?
source
share