Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下 JSFiddle:JSFiddle
使用以下 CSS:
.showlangs tr:even { background-color: #DFFAFF; }
但是偶数行没有显示背景颜色。知道我做错了什么吗?
它应该是
.showlangs tr:nth-child(even) { background-color: #DFFAFF; }
http://jsfiddle.net/KqFsy/1/