Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/73.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html 角度js中的文本编辑器_Html_Css - Fatal编程技术网

Html 角度js中的文本编辑器

Html 角度js中的文本编辑器,html,css,Html,Css,使用了下面的文本编辑器代码,其中列出了项目符号 <div text-angular="text-angular" ng-model="comments" style="border: 1px solid #e1e1e1;" ta-toolbar="[['ul']]" name="htmlcontent1" class="form-control myform1-height" ta-html-editor-class="form-control myform1

使用了下面的文本编辑器代码,其中列出了项目符号

<div text-angular="text-angular" ng-model="comments" 
    style="border: 1px solid #e1e1e1;" 
    ta-toolbar="[['ul']]" name="htmlcontent1" class="form-control myform1-height" 
    ta-html-editor-class="form-control myform1-height">
</div>

演示一下这个code@kalpeshpatel参考此链接,您是否正在寻找类似堆栈溢出文本框???@Aravind textArea的东西,并提供使用选项bullets@ThripthiHaridas你能为同样的东西添加一个plunker或fiddle吗?展示这个演示code@kalpeshpatel参考此链接,您是否正在查找堆栈溢出之类的内容textbox???@Aravind textArea,带有使用选项bullets@ThripthiHaridas你能为同样的东西加一把木棍或提琴吗?
.closing-textarea {
    width: 100%;
    margin-top: 30px;
    border: 1px solid #dee5e7;
    outline: none;
    -webkit-appearance: none;
    resize: none;
    padding: 10px;
}

.closing-comments-wrapper .form-control {

    border: none;
    border-top: 1px solid #e1e1e1;
    /*padding: 10px;*/
    /*border: 2px dashed #DDD;*/
}

.closing-comments-wrapper .ta-editor.form-control.myform1-height, .ta-scroll-window.form-control.myform1-height  {

    min-height: 150px;
    height: auto;
    overflow: auto;
    font-family: inherit;
    font-size: 100%;
}

.closing-comments-wrapper .form-control.myform1-height > .ta-bind {

    height: auto;
    min-height: 150px;
    padding: 6px 12px;
}

.closing-comments-wrapper .btn-group>.btn:first-child {

    background: rgb(255, 255, 255);
    float: right;
}

.closing-comments-wrapper .btn-group {

    float: right;
}

.ta-hidden-input {

  display: none;

}