CSS中0到100%的5星排名“宽度”%仅适用于20/40/60/80/100但不是例如70%

时间:2017-09-01 19:24:18

标签: html css mustache

我有问题。我使用胡子代码来触发内容。 现在我在网站上有一个5星评价评级,但是为了触发内容而不进入代码,我用胡子代码制作了叠加层。一切都很好。但是,例如,如果在源代码中评级是4.5星,它就不会填满星星。但是在源代码中,类被更改为bcrating4.5

这是我的代码:

    <span class="rating bcrating{{rating}}"></span>

rating类是网站的原始代码 bcrating是CSS代码中的下面的类 小胡子{{rating}}是触发器代码。

<p id="hiddenrating" hidden>{{rating}}</p>{{#recommendations}}                                        

  <ul class="box-content box-related" id="viewed-product-list">
    <li class="item" style="width:16.57%">
      <div class="item-info grid_2 alpha">         {{#image}}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
        <a class="product-image" href="{{URL}}" title="{{name}}">
          <img src="{{image}}" alt="{{name}}" style="width:50%">
        </a>    {{/image}}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
        <div class="product-details">
          <a href="{{URL}}" title="{{name}}">
            <span class="product-name">{{name}}</span>
            <div class="price leden">
              <span class="old_price">
                <strong>{{old_price}}</strong>
              </span>
              <span class="new_price">
                <strong>{{new_price}}</strong>
              </span>
            </div>
          </a>
          <div class="product-review-block">
            <span class="fivestar">
              <span class="rating-box">
                <a class="nobr" href="{{URL}}#customer-reviews-tab">
                </a>
                <span class="rating bcrating{{rating}}"></span>
              </span>
            </span>
          </div>
        </div>
      </div>
    </li>
  </ul>{{/recommendations}}

CSS:

.bcrating0 {
    width:0%;
}
.bcrating1 {
    width:20%;
}
.bcrating2 {
    width:40%;
}
.bcrating3 {
    width:60%;
}
.bcrating4 {
    width:80%;
}
.bcrating5 {
    width:100%;
}

1 个答案:

答案 0 :(得分:3)

如果{{rating}}的值为“4.5”,则HTML中.rating元素的类名为bcrating4.5。 HTML可以将句点作为有效类名的一部分。

在您的CSS中,您只有.bcrating4.bcrating5个班级。什么都不匹配。

您需要定义一个类.bcrating4\.5,其中句点字符被转义,使其成为CSS中与HTML匹配的有效选择器。

这是一个方便的角色转义工具:https://mothereff.in/css-escapes