diff --git a/docs/examples/select-content-option.tsx b/docs/examples/select-content-option.tsx
new file mode 100644
index 000000000..2b809e55a
--- /dev/null
+++ b/docs/examples/select-content-option.tsx
@@ -0,0 +1,186 @@
+import React from 'react';
+import Select, { Option } from '@rc-component/select';
+import '../../assets/index.less';
+
+const Demo: React.FC = () => {
+ const [value, setValue] = React.useState
+ When an option has style or className props, they will be applied
+ to the selected item display.
+
+ Use getInputElement to customize the input element. This only works with{' '}
+ mode="combobox". Type to add new options dynamically.
+