如何在bootstrap模式体内设置div? 这是我的模特:
<div> <button class="btn btn-danger" (click)="modal.alert()
.title('Model')
.body('<div id='Mytext'> text </div>')
.okBtn('ok')
.open();">Open Model</button> </div>
我的css:
@Mytext{
color:red;
}
它不起作用..
答案 0 :(得分:0)
我不明白你的代码是标准的,但是我们可以简单地把你的css放在你的代码中,颜色就像这样 -
<p id="myText">Demo Text</p>
....
#myText{
color:red;
}
这是示例 Working Example
PS: -
#
表示,而不是@
。