图像宽度被忽略

时间:2013-06-24 02:56:19

标签: image internet-explorer twitter-bootstrap width

<div class="header">
  <div class="container">
    <div class="row">
      <div class="span8">
          <img src="img/logo.svg">
      </div>
      <div class="span4">
          <div class="pull-right">
            <img class="img-circle" src="<? echo $FOTO;?>" width="35px">
            <span class="nome-user"> Bem vindo, <? echo $NOME_SOBRENOME; ?></span>
            <button class="btn btn-mini btn-warning">SAIR</button></div></div>
        </div>
    </div><!-- fecha container -->
</div><!-- fecha o header -->

嗨,我试图搜索这个问题,但没有任何对我有用。我正在使用bootstrap IE9忽略img标签上的宽度定义。我尝试了width="35"width="35px\9"

1 个答案:

答案 0 :(得分:0)

不建议对图像进行属性调整。

您最好使用服务器端大小调整或CSS,而不是大小属性。 始终避免内联样式。

更多信息,请查看此question about img width with IE9 and Bootstrap