diff --git a/guides/compatibility-mode.md b/guides/compatibility-mode.md
new file mode 100644
index 000000000000..8ea4d3fe912a
--- /dev/null
+++ b/guides/compatibility-mode.md
@@ -0,0 +1,19 @@
+## What is compatibility mode?
+Compatibility mode for `@angular/material` allows the components to exist side-by-side with AngularJS Material components without any CSS collisions.
+
+## What does compatibility mode do?
+When enabled, compatibility mode enforces that all template APIs use the prefix `mat-` instead of `md-`. This will prevent any CSS from AngularJS Material from affecting the components in `@angular/material`.
+
+## How is compatibility mode enabled?
+Import `NoConflictStyleCompatibilityMode` into your application's root `NgModule`.
+
+
+## Example
+
+```html
+
+
+
+
+
+```