我有一个div,我确实需要将css属性应用于该div。该页面的结构如下:

<div class="form-horizontal">
    <div class="form-group">
         <div class="newFormRightContent">


我的样式表中有一个.form-group,在页面上显示出来很好,但是我的.newFormRightContent样式从未得到分配。我正在使用chrome inspect元素,可以看到在newFormRightContent级别,样式是从form-group和user-agent ss继承的。

我在CSS中尝试了各种选择器组合:

div.form-group.newFormRightContent {

.form-group.newFormRightContent {

.newFormRightContent {


似乎没有任何效果-有人可以在这里让我了解我的失败吗!

非常感谢

最佳答案

您必须在.form-group和.newFormRightContent之间留出空间

.form-group .newFormRightContent{


并尝试设置您的样式!important

10-08 18:15