风格不适用

时间:2015-11-04 01:02:53

标签: javascript html css xml xslt

我有以下文件state.css。在其中,有这段代码:

    .linked_location .rating {
        position: absolute;
        right: 180px;
        bottom: 2px;
        height: 30px;
    }

body标记后面的html中,我有以下styles 重写

    <style type="text/css">
    .linked_location .rating {
      position: absolute;
      right: 180px;
      bottom: 2px;
      height: 15px;
    }
    </style>

以下是我的输出HTML:(注意:我使用的是XSLT,而style代码可能就是问题。

    <div class="linked_location">
    <div class="rating">
    <div class="score">4.<small>3</small>
    </div>
    <span>Rating</span>
    </div>
    </div>

问题在于,尽管我在样式标记中手动将样式更新为30px,但它仍将高度设为15px

不太确定问题是什么,可能与使用xslt

中的样式标记有关

1 个答案:

答案 0 :(得分:-1)

在CSS中尝试:

height: 30px!important;