如http://emberjs.jsbin.com/EGEVElIR/3所示,<script>
标记会干扰bootstraps功能(或者具体而言,可能是bootstrap的css选择器)。
.list-group-item:first-child {
border-top-right-radius: 4px;
border-top-left-radius: 4px;
}
.list-group-item:last-child {
margin-bottom: 0;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
}
答案 0 :(得分:2)
这是一个非常常见的问题。查看此问题https://github.com/emberjs/ember.js/issues/623
回答你的问题
:first-child-of-type
代替:first-child
奖金问题