Skip to content

Commit 452d5a6

Browse files
authored
Update README.md
1 parent 625a539 commit 452d5a6

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,23 @@ To install packages in Stackblitz, such as bootstrap and font-awesome, you need
6666
5) Repeat step 3 with font-awesome
6767

6868
Stackbliz has the Angular CLI commands built in. Instead of installing the Angular CLI to your system, right-click on a folder in Stackblitz and you'll see an "Angular Generator" option. Under that menu you'll find the Angular CLI commands.
69+
70+
## FAQ
71+
72+
I'm using `thead` to change the color of the heading and it doesn't work. Why?
73+
74+
Code:
75+
```
76+
thead {
77+
color: #337AB7;
78+
}
79+
```
80+
81+
For some reason, the thead no longer seems to work. Use `th` instead. (This is a CSS issue, not an Angular issue.)
82+
83+
Code:
84+
```
85+
th {
86+
color: #337AB7;
87+
}
88+
```

0 commit comments

Comments
 (0)