如何设置角度ng模板选择器的样式

时间:2017-11-25 09:12:16

标签: html css angular ng-template

我正在努力使用样式ng-template标记 到目前为止我在我的.css文件中尝试了什么:

  • 在我的.css文件中使用#other_content作为ID
  • 将类添加到<ng-template>
  • 样式化所有<td>代码

它没有工作,搜索后我没有找到任何解决方案。

HTML:

<div class="cont">
    <div class="scolldiv">
        <table border="1">
            <thead>
                <tr>
                    <th>Char</th>
                    <th>Break After</th>
                    <th>Remove</th>
                </tr>
            </thead>
            <tbody>
                <tr *ngFor="let charobj of Chars;let i = index" [attr.data-index]="i">
                    <td>{{charobj.char}}</td>
                    <td class="tdcell" *ngIf= "charobj.after; else other_content">YES</td>
                    <ng-template  #other_content>NO</ng-template>
                    <td>
                        <MyBtn
                            [ID]="'btnaddchars_' + i"
                            [BackColor]= "globals.sysButtonBackColor"
                            [Color]= "globals.sysButtonForeColor"
                            [HoverBackColor] = "globals.sysHoverButtonBackColor"
                            [HoverColor] = "globals.sysHoverButtonForeColor"
                            [Text] ="'Delete'"
                            [SecondText]="'Close'"
                            [Width] ="'70px'"
                            [Height]="'17px'"
                            (buttonWasClicked) ="onSymbolsFormButtonClick($event)"
                            >
                        </MyBtn>
                    </td>
                </tr>

            </tbody>
        </table>
    </div>
</div>

图像:

enter image description here

2 个答案:

答案 0 :(得分:4)

由于<ng-template>DOM被渲染时被转换为绑定

<!--bindings={
  "ng-reflect-ng-if": "false",
  "ng-reflect-ng-if-else": "[object Object]"
}-->

尝试为您的文字示例提供课程(CSS class)

<ng-template #other_content>
    <label class='_YOUR CSS CLASS_'>No</label>
</ng-template>

答案 1 :(得分:0)

你必须把

 <td class=..> </td>

在NO周围,因为整个带有ngIf的标签在else情况下通过模板替换。