我的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>
答案 0 :(得分:2)
在CSS中你错过了分号。
#header {
background-color: teal;
color: white;
text-align: center;
}