开发者

solve this style problem for IE6 and IE7

开发者 https://www.devze.com 2023-03-30 03:49 出处:网络
First i will show you the problem, wich only happens on IE6/IE7 As you can see, when the length of the innerHtml it\'s not long, no problem; but when it\'s \'longer\' the sprite set as bg image get

First i will show you the problem, wich only happens on IE6/IE7

solve this style problem for IE6 and IE7

As you can see, when the length of the innerHtml it's not long, no problem; but when it's 'longer' the sprite set as bg image gets repeated and the text jumps to the next line...

now, the CSS

.contButton {
    list-style: none;
    float: right;
}


.contButton p {
 开发者_运维知识库   float: left;
    display: inline; /*For ignore double margin in IE6*/
    margin: 0 0 0 10px !important;
}
.contButton a {
    text-decoration: none !important;
    float: left;
    color: #FFF;
    cursor: pointer;
    font-size: 14px !important;
    line-height: 21px;
    font-weight: bold !important;
}
.contButton span {
    margin: 0px 10px 0 -10px;
    padding: 3px 8px 5px 18px;
    position: relative; /*To fix IE6 problem (not displaying)*/
    float:left;
}
/*ESTADO NORMAL AZUL*/
.contButton p a {
    background: url(../nImg/spriteBotones.png) no-repeat right -214px;
    _background: url(../nImg/spriteBotones.gif) no-repeat right -214px;
    color: #FFF;    
}


.contButton p a span {
    background: url(../nImg/spriteBotones.png) no-repeat left -214px;
    _background: url(../nImg/spriteBotones.gif) no-repeat left -214px;
}

And the Html:

<div class="">
....
<div class="contButton mt10">
   <p><a tabindex="" title="acceder" href="#"><span>ver disponibilidad</span></a></p>
</div> 
...
</div>

This is the bg Image. ![the sprite][2]

Tried with:

<!--[if IE lte 7]>



<style type="text/css"> 
/*
.contNombrePrecioHtl .contButton p a{ height:20px;  }
.contNombrePrecioHtl .contButton p a span{ height:20px; width:auto; }  */
</style>
<![endif]-->

But that didn't solve the problem...

PS: class="mt10" it's only a margin-top:10px;

Any idea how to solve this for the glorious IE6/7?


Try adding white-space: nowrap to .contButton.


change this:

.contButton span {
  margin: 0px 10px 0 -10px;
  padding: 3px 8px 5px 18px;
  position: relative; /*To fix IE6 problem (not displaying)*/
  float:left;
  white-space: nowrap;
}


I don't think it is a problem with either IE versions, it's probably just the newer browsers being less strict about this particular thing. I haven't tested anything, but "display:inline-block" has helped me sometimes. Still it doesn't seem like the most effective solution. The width seems to be limiting here, you shouldn't give the thing a fixed width if you don't want the text to "jump" into a second line...


  1. can you try to add overflow: hidden to each parent of element with float: left? in this case you will have to add it to each div, p and a. I am not sure whether your actual code is optimal.
  2. Moreover, float: left; and display: inline together make no sense. This might be the reason of the strange behaviour. Delete display: inline (remember about adding overflow: hidden to its parent) and it should work. Haven't tested though.

UPDATE:

apparently as the author of the question mentions float:left + display: inline fixes IE6 double margin bug for floating elements.


defining dimensions for elements like p oder span is always somewhere between tricky and impossible, because they are inline elements. I'd recommend modifying the surrounding block element div.contButton.

In addition to height you should set overflow to hidden:

.contButton { 
    height:20px; 
    width:219px; 
    overflow: hidden;
}
0

精彩评论

暂无评论...
验证码 换一张
取 消