關於設定CSS class 的問題?

我的APP 裡有一個module 是HTML table 來的,table.component.html source code 如下:

<table border=1>
  <theader></theader>
</table>

在它之下有一個component 叫theader,theader.component.html source code 如下:

<thead>
  <tr><td class="alignCenter">Table Header</td></tr>
</thead>

這是我的theader.component.css

.alignCenter
{
   text-align: center;
}

我的問題為何"table header" 不是置中呢?
在computed CSS 顯示,明明text-align已經設定center了,為什麼它不是置中呢?
麻煩參考screen dump.

還有,就是如何在同個app 共用css class 呢?

這個我可以先回答你,寫在 style.css 就是全域共用

些些:grinning:

這是stackoverflow.com 所提供答案

1個讚