diff --git a/src/components/card/README.md b/src/components/card/README.md
index ef62bd4429f6..14c28409ac0c 100644
--- a/src/components/card/README.md
+++ b/src/components/card/README.md
@@ -51,6 +51,11 @@ Output:
+#### Preset shortcuts
+
+`md-card-actions` has a few layout shortcuts. You can add `align="end"` to align the buttons at the end of
+the main axis (flex-end). The default is `align="start"` (flex-start).
+
### Preset layouts
You can also leverage preset layouts that format some of the sections together.
diff --git a/src/components/card/card.scss b/src/components/card/card.scss
index f99a69d1fe31..02f9c60f5c66 100644
--- a/src/components/card/card.scss
+++ b/src/components/card/card.scss
@@ -55,6 +55,11 @@ md-card-actions {
margin-left: -16px;
margin-right: -16px;
padding: 8px 0;
+
+ &[align='end'] {
+ display: flex;
+ justify-content: flex-end;
+ }
}
[md-card-image] {
diff --git a/src/demo-app/card/card-demo.html b/src/demo-app/card/card-demo.html
index a577da8565ba..12617c5f74d1 100644
--- a/src/demo-app/card/card-demo.html
+++ b/src/demo-app/card/card-demo.html
@@ -26,6 +26,10 @@