代码之家  ›  专栏  ›  技术社区  ›  Grahame A

使用css显示图像的可变部分

  •  1
  • Grahame A  · 技术社区  · 14 年前

    <div style="width: 179px; height: <%: 484 * Model.PercentToGoal  %>px; background-image: url(../Content/Images/meter_fill.png); color: inherit;  position: absolute;  left:113px; bottom: 60px;">
        </div>
    

    我遇到的问题是它似乎首先显示图像的顶部。如何从图像底部开始显示?

    1 回复  |  直到 14 年前
        1
  •  0
  •   Phil    14 年前
    <div style="width: 179px; height: <%: 484 * Model.PercentToGoal  %>px; background-image: url(../Content/Images/meter_fill.png) bottom; color: inherit;  position: absolute;  left:113px; bottom: 60px;">
        </div>