我正在以角度可编辑的形式使用带有可编辑TextAngular指令的文本角度,并且在进入编辑模式时,文本容器会变为无穷大。
这是我的 CSS:
.ta-editor {
min-height: 300px;
height: auto;
overflow: auto;
font-family: inherit;
font-size: 100%;
margin:20px 0;
}
查看模式和编辑模式: 在查看模式下正确显示。在编辑模式下,文本容器会出现在屏幕之外。
这是我的html:
<div class="form-group" style="width: 100%;margin-top: 10px;">
<span
editable-text-angular="notificacion.texto"
data-e-name="notificacion.texto"
data-e-class="editable-text-angular"
ng-bind-html="notificacion.texto"
>
{{notificacion.texto}}
</span>
</div>