卡與行動

如果你希望你的卡包含按鈕,請使用 md-card-actions 指令。對於僅圖示按鈕,按鈕的格式也可以不同。如果你使用的是 Google 的素材圖示,請在此處搜尋圖示。

<md-card>
    <!--header-->
    <md-card-content>
        <p>
        Your content goes here!
        </p>
    </md-card-content>
    <md-card-actions>
        <md-button>Save</md-button>
        <md-button>Cancel</md-button>
        <md-card-icon-actions>
          <md-button aria-label="icon" class="md-icon-button">
                <md-icon>help</md-icon>
          </md-button>
        </md-card-icon-actions>
    </md-card-actions>
</md-card>