CSS text-align不起作用

时间:2017-02-18 10:50:13

标签: html css

我的CSS有什么问题:文字没有像我期望的那样居中

请参阅https://jsfiddle.net/L5bgrg8d/

#header {
  background-color: teal;
  color: white
  text-align: center;
}

的style.css

<httpSession idLength="28" invalidateOnUnauthorizedSessionRequestException="true" cookieSecure="true" useInvalidatedId="false"></httpSession>

1 个答案:

答案 0 :(得分:2)

在CSS中你错过了分号。

#header {
  background-color: teal;
  color: white;
  text-align: center;
}