diff --git a/packages/amis-editor-core/src/component/ClassNameControl.tsx b/packages/amis-editor-core/src/component/ClassNameControl.tsx index 420456143d3..1a41a181942 100644 --- a/packages/amis-editor-core/src/component/ClassNameControl.tsx +++ b/packages/amis-editor-core/src/component/ClassNameControl.tsx @@ -459,7 +459,35 @@ const classOptions = [ } ] }, - + + { + label: '对齐', + children: [ + { + label: '左', + value: 'text-left' + }, + + '|', + { + label: '中', + value: 'text-center' + }, + + '|', + { + label: '右', + value: 'text-right' + }, + + '|', + { + label: 'justify', + value: 'text-justify' + } + ] + }, + { label: '其他', className: 'w2x',