Foros del Web » Creando para Internet » CSS »

Problema de Diseño con la Vista Compatibilidad en IE9

Estas en el tema de Problema de Diseño con la Vista Compatibilidad en IE9 en el foro de CSS en Foros del Web. Hola, Lo primero no sé si va en este subforo mi pregunta pero no encontré ningún subforo de CSS. El problema que tengo es el ...
  #1 (permalink)  
Antiguo 29/01/2013, 03:58
 
Fecha de Ingreso: mayo-2007
Mensajes: 239
Antigüedad: 16 años, 10 meses
Puntos: 0
Problema de Diseño con la Vista Compatibilidad en IE9

Hola,

Lo primero no sé si va en este subforo mi pregunta pero no encontré ningún subforo de CSS. El problema que tengo es el siguiente: tengo un div (PRINCIPAL) que le defino el alto en 200px para mostrar unas barras de desplazamiento y dentro del div tengo una tabla con varias filas y en cada fila un div con un control HTML simulando una barra de progreso mediante estilos CSS.

El código funciona perfecto en IE9 pero si activo la vista de compatibilidad los DIV de la barra de progreso se salen fuera del DIV PRINCIPAL (el limitado a 200px de alto).

Y el css utilizado es el siguiente:
<CODE>
@-webkit-keyframes animate-stripes {
to {
background- 0;
}

from {
background- 0;
}
}

@-moz-keyframes animate-stripes {
to {
background- 0;
}

from {
background- 0;
}
}

/* Bar which is placed behind the progress */
.ui-progress-bar {
/* Usual setup stuff */
;
height: 25px;
/* Pad right so we don't cover the borders when fully progressed */
padding-right: 2px;
/* For browser that don't support gradients, we'll set a blanket background colour */
background-color: #abb2bc;
/* Rounds the ends, we specify an excessive amount to make sure they are completely rounded */
/* Adjust to your liking, and don't forget to adjust to the same amount in .ui-progress */
-moz-border-radius: 25px;
-webkit-border-radius: 25px;
-o-border-radius: 25px;
-ms-border-radius: 25px;
-khtml-border-radius: 25px;
border-radius: 25px;
/* Background gradient */
background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #949daa), color-stop(100%, #abb2bc));
background: -webkit-linear-gradient(#949daa 0%, #abb2bc 100%);
background: -moz-linear-gradient(#949daa 0%, #abb2bc 100%);
background: -o-linear-gradient(#949daa 0%, #abb2bc 100%);
background: -ms-linear-gradient(#949daa 0%, #abb2bc 100%);
background: linear-gradient(#949daa 0%, #abb2bc 100%);
/* Give it the inset look by adding some shadows and highlights */
-moz-box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.5), 0px 1px 0px 0px white;
-webkit-box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.5), 0px 1px 0px 0px white;
-o-box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.5), 0px 1px 0px 0px white;
box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.5), 0px 1px 0px 0px white;
/* Alt colours */
/* Progress part of the progress bar */
}
.ui-progress-bar.blue .ui-progress {
background-color: #339BB9!important;
border: 1px solid #287a91;
}
.ui-progress-bar.error .ui-progress {
background-color: #C43C35 !important;
border: 1px solid #9c302a;
}
.ui-progress-bar.warning .ui-progress {
background-color: #D9B31A!important;
border: 1px solid #ab8d15;
}
.ui-progress-bar.pendiente .ui-progress {
background-color: #b3b3b1!important;
border: 1px solid #8d8d8c;
}
.ui-progress-bar.success .ui-progress {
background-color: #57A957!important;
border: 1px solid #458845;
}
.ui-progress-bar.transition .ui-progress {
-moz-transition: background-color 0.5s ease-in, border-color 1.5s ease-out, box-shadow 1.5s ease-out;
-webkit-transition: background-color 0.5s ease-in, border-color 1.5s ease-out, box-shadow 1.5s ease-out;
-o-transition: background-color 0.5s ease-in, border-color 1.5s ease-out, box-shadow 1.5s ease-out;
transition: background-color 0.5s ease-in, border-color 1.5s ease-out, box-shadow 1.5s ease-out;
}
.ui-progress-bar .ui-progress {
/* Usual setup stuff */
;
display: block;
overflow: hidden;
/* Height should be 2px less than .ui-progress-bar so as to not cover borders and give it a look of being inset */
height: 23px;
/* Rounds the ends, we specify an excessive amount to make sure they are completely rounded */
/* Adjust to your liking, and don't forget to adjust to the same amount in .ui-progress-bar */
-moz-border-radius: 25px;
-webkit-border-radius: 25px;
-o-border-radius: 25px;
-ms-border-radius: 25px;
-khtml-border-radius: 25px;
border-radius: 25px;
/* Set the background size so the stripes work correctly */
-webkit-background-size: 44px 44px;
-moz-background-size: 36px 36px;
/* Webkit */
/* For browser that don't support gradients, we'll set a base background colour */
background-color: #74d04c;
/* Webkit background stripes and gradient */
background: -webkit-gradient(linear, 0 0, 44 44, color-stop(0, rgba(255, 255, 255, 0.17)), color-stop(0.25, rgba(255, 255, 255, 0.17)), color-stop(0.26, rgba(255, 255, 255, 0)), color-stop(0.5, rgba(255, 255, 255, 0)), color-stop(0.51, rgba(255, 255, 255, 0.17)), color-stop(0.75, rgba(255, 255, 255, 0.17)), color-stop(0.76, rgba(255, 255, 255, 0)), color-stop(1, rgba(255, 255, 255, 0))), -webkit-gradient(linear, left bottom, left top, color-stop(0, rgba(255, 255, 255, 0)), color-stop(1, rgba(255, 255, 255, 0.35))), #74d04c;
/* Mozilla (Firefox etc) background stripes */
/* Note: Mozilla's support for gradients is more true to the original design, allowing gradients at 30 degrees, as apposed to 45 degress in webkit. */
background: -moz-repeating-linear-gradient(top left -30deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.17) 15px, rgba(255, 255, 255, 0) 15px, rgba(255, 255, 255, 0) 30px), -moz-linear-gradient(rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%), #74d04c;
-moz-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4), inset 0px -1px 1px rgba(0, 0, 0, 0.2);
-webkit-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4), inset 0px -1px 1px rgba(0, 0, 0, 0.2);
-o-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4), inset 0px -1px 1px rgba(0, 0, 0, 0.2);
box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4), inset 0px -1px 1px rgba(0, 0, 0, 0.2);
/* Give it a higher contrast outline */
border: 1px solid #4c8932;
/* Animate */
-moz-animation: animate-stripes 2s linear infinite;
-webkit-animation: animate-stripes 2s linear infinite;
-o-animation: animate-stripes 2s linear infinite;
-ms-animation: animate-stripes 2s linear infinite;
-khtml-animation: animate-stripes 2s linear infinite;
animation: animate-stripes 2s linear infinite;
/* Style status label */
}
.ui-progress-bar .ui-progress span.ui-label {
-moz-font-smoothing: antialiased;
-webkit-font-smoothing: antialiased;
-o-font-smoothing: antialiased;
-ms-font-smoothing: antialiased;
-khtml-font-smoothing: antialiased;
font-smoothing: antialiased;
font-size: 13px;
;
right: 0;
line-height: 23px;
padding-right: 12px;
color: rgba(0, 0, 0, 0.6);
text-shadow: rgba(255, 255, 255, 0.45) 0 1px 0px;
white-space: nowrap;
}
.ui-progress-bar .ui-progress span.ui-label b {
font-weight: bold;
}
</code>

Gracias pro su ayuda. un saludo
  #2 (permalink)  
Antiguo 29/01/2013, 03:58
 
Fecha de Ingreso: mayo-2007
Mensajes: 239
Antigüedad: 16 años, 10 meses
Puntos: 0
Respuesta: Problema de Diseño con la Vista Compatibilidad en IE9

Adjunto el código HTML:
Código:
 <div style="padding: 5px; width: 95%; height: 200px; overflow-y: auto;" id="div1">
<table style="border: 1px solid white; text-aling: center;" cellSpacing="2" cellPadding="4" width="100%">
<tbody>
<tr style="border: 1px solid white;">
<th style="border: 1px solid white; width: 40%; text-align: left;" class="1">Columna1 </th>
<th style="border: 1px solid white;" class="1" width="5%" scope="col"></th>
<th style="border: 1px solid white;" class="1" width="25%" scope="col">Columna2</th>
<th style="border: 1px solid white;" class="1" width="15%" scope="col">Columna3</th>
<th style="border: 1px solid white;" class="1" width="15%" scope="col">Columna4</th>
</tr>
<tr style="border: 1px solid white;">
<td style="border: 1px solid white; text-align: left;"> <span title="Valor"> Valor </span></td>
<td style="border: 1px solid white; text-align: center;"><img style="cursor: pointer;" title="Vista Previa" alt="" src="../../img/ES/home/iconos/icono.jpg" /></td>
<td style="border: 1px solid white; text-align: center;"><div style="width: 100%;" id="progress_bar" class="ui-progress-bar transition" align="left"><div style="left: 0px; top: 0px; width: 100%;" class="ui-progress" align="center"><b style="color: black;" class="value"> 100%</b></div></div></td>
<td style="border: 1px solid white; text-align: center;">Valor  </td>
<td style="border: 1px solid white; text-align: center;">Valor  </td>
</tr>
<tr style="border: 1px solid white;">
<td style="border: 1px solid white; text-align: left;"> <span title="Valor"> Valor </span></td>
<td style="border: 1px solid white; text-align: center;"><img style="cursor: pointer;" title="Vista Previa" alt="" src="../../img/ES/home/iconos/icono.jpg" /></td>
<td style="border: 1px solid white; text-align: center;"><div style="width: 100%;" id="progress_bar" class="ui-progress-bar transition" align="left"><div style="left: 0px; top: 0px; width: 100%;" class="ui-progress" align="center"><b style="color: black;" class="value"> 100%</b></div></div></td>
<td style="border: 1px solid white; text-align: center;">Valor </td>
<td style="border: 1px solid white; text-align: center;">Valor </td>
</tr>
<tr style="border: 1px solid white;">
<td style="border: 1px solid white; text-align: left;"> <span title="Valor"> Valor  </span></td>
<td style="border: 1px solid white; text-align: center;"><img style="cursor: pointer;" title="Vista Previa" alt="" src="../../img/ES/home/iconos/icono.jpg" /></td>
<td style="border: 1px solid white; text-align: center;"><div style="width: 100%;" id="progress_bar" class="ui-progress-bar transition" align="left"><div style="left: 0px; top: 0px; width: 100%;" class="ui-progress" align="center"><b style="color: black;" class="value"> 100%</b></div></div></td>
<td style="border: 1px solid white; text-align: center;">Valor  </td>
<td style="border: 1px solid white; text-align: center;">Valor  </td>
</tr>
<tr style="border: 1px solid white;">
<td style="border: 1px solid white; text-align: left; vertical-align: top;" rowSpan="3"> <span title="Valor"> Valor </span></td>
<td style="border: 1px solid white; text-align: center;"><img style="cursor: pointer;" title="Vista Previa" alt="" src="../../img/ES/home/iconos/icono.jpg" /></td>
<td style="border: 1px solid white; text-align: center;"><div style="width: 100%;" id="progress_bar" class="ui-progress-bar transition" align="left"><div style="left: 0px; top: 0px; width: 100%;" class="ui-progress" align="center"><b style="color: black;" class="value"> 100%</b></div></div></td>
<td style="border: 1px solid white; text-align: center;">Valor </td>
<td style="border: 1px solid white; text-align: center;">Valor </td>
</tr>
<tr style="border: 1px solid white;">
<td style="border: 1px solid white; text-align: center;"><img style="cursor: pointer;" title="Vista Previa" alt="" src="../../img/ES/home/iconos/icono.jpg" /></td>
<td style="border: 1px solid white; text-align: center;"><div style="width: 100%;" id="progress_bar" class="ui-progress-bar transition" align="left"><div style="left: 0px; top: 0px; width: 100%;" class="ui-progress" align="center"><b style="color: black;" class="value"> 100%</b></div></div></td>
<td style="border: 1px solid white; text-align: center;">Valor </td>
<td style="border: 1px solid white; text-align: center;">Valor  </td>
</tr>
<tr style="border: 1px solid white;">
<td style="border: 1px solid white; text-align: center;"><img style="cursor: pointer;" title="Vista Previa" alt="" src="../../img/ES/home/iconos/icono.jpg" /></td>
<td style="border: 1px solid white; text-align: center;"><div style="width: 100%;" id="progress_bar" class="ui-progress-bar transition" align="left"><div style="left: 0px; top: 0px; width: 100%;" class="ui-progress" align="center"><b style="color: black;" class="value"> 100%</b></div></div></td>
<td style="border: 1px solid white; text-align: center;">Valor </td>
<td style="border: 1px solid white; text-align: center;">Valor </td>
</tr>
<tr style="border: 1px solid white;">
<td style="border: 1px solid white; text-align: left;"> <span title="Valor"> Valor</span></td>
<td style="border: 1px solid white; text-align: center;"><img style="cursor: pointer;" title="Vista Previa" alt="" src="../../img/ES/home/iconos/icono.jpg" /></td>
<td style="border: 1px solid white; text-align: center;"><div style="width: 100%;" id="progress_bar" class="ui-progress-bar transition" align="left"><div style="left: 0px; top: 0px; width: 100%;" class="ui-progress" align="center"><b style="color: black;" class="value"> 100%</b></div></div></td>
<td style="border: 1px solid white; text-align: center;">Valor </td>
<td style="border: 1px solid white; text-align: center;">Valor </td>
</tr>
<tr style="border: 1px solid white;">
<td style="border: 1px solid white; text-align: left;"> <span title="Valor"> Valor </span></td>
<td style="border: 1px solid white; text-align: center;"><img style="cursor: pointer;" title="Vista Previa" alt="" src="../../img/ES/home/iconos/icono.jpg" /></td>
<td style="border: 1px solid white; text-align: center;"><div style="width: 100%;" id="progress_bar" class="ui-progress-bar transition" align="left"><div style="left: 0px; top: 0px; width: 100%;" class="ui-progress" align="center"><b style="color: black;" class="value"> 100%</b></div></div></td>
<td style="border: 1px solid white; text-align: center;">Valor </td>
<td style="border: 1px solid white; text-align: center;">Valor </td>
</tr>
<tr style="border: 1px solid white;">
<td style="border: 1px solid white; text-align: left;"> <span title="Valor"> Valor</span></td>
<td style="border: 1px solid white; text-align: center;"><img style="cursor: pointer;" title="Vista Previa" alt="" src="../../img/ES/home/iconos/icono.jpg" /></td>
<td style="border: 1px solid white; text-align: center;"><div style="width: 100%;" id="progress_bar" class="ui-progress-bar transition" align="left"><div style="left: 0px; top: 0px; width: 100%;" class="ui-progress" align="center"><b style="color: black;" class="value"> 100%</b></div></div></td>
<td style="border: 1px solid white; text-align: center;">Valor </td>
<td style="border: 1px solid white; text-align: center;">Valor </td>
</tr>
<tr style="border: 1px solid white;">
<td style="border: 1px solid white; text-align: left;"> <span title="Valor"> Valor</span></td>
<td style="border: 1px solid white; text-align: center;"><img style="cursor: pointer;" title="Vista Previa" alt="" src="../../img/ES/home/iconos/icono.jpg" /></td>
<td style="border: 1px solid white; text-align: center;"><div style="width: 100%;" id="progress_bar" class="ui-progress-bar transition" align="left"><div style="left: 0px; top: 0px; width: 100%;" class="ui-progress" align="center"><b style="color: black;" class="value"> 100%</b></div></div></td>
<td style="border: 1px solid white; text-align: center;">Valor </td>
<td style="border: 1px solid white; text-align: center;">Valor </td>
</tr>
<tr style="border: 1px solid white;">
<td style="border: 1px solid white; text-align: left;"> <span title="Valor"> Valor</span></td>
<td style="border: 1px solid white; text-align: center;"><img style="cursor: pointer;" title="Vista Previa" alt="" src="../../img/ES/home/iconos/icono.jpg" /></td>
<td style="border: 1px solid white; text-align: center;"><div style="width: 100%;" id="progress_bar" class="ui-progress-bar transition" align="left"><div style="left: 0px; top: 0px; width: 100%;" class="ui-progress" align="center"><b style="color: black;" class="value"> 100%</b></div></div></td>
<td style="border: 1px solid white; text-align: center;">Valor </td>
<td style="border: 1px solid white; text-align: center;">Valor </td>
</tr>
<tr style="border: 1px solid white;">
<td style="border: 1px solid white; text-align: left;"> <span title="Valor"> Valor </span></td>
<td style="border: 1px solid white; text-align: center;"><img style="cursor: pointer;" title="Vista Previa" alt="" src="../../img/ES/home/iconos/icono.jpg" /></td>
<td style="border: 1px solid white; text-align: center;"><div style="width: 100%;" id="progress_bar" class="ui-progress-bar transition" align="left"><div style="left: 0px; top: 0px; width: 100%;" class="ui-progress" align="center"><b style="color: black;" class="value"> 100%</b></div></div></td>
<td style="border: 1px solid white; text-align: center;">Valor </td>
<td style="border: 1px solid white; text-align: center;">Valor </td>
</tr>
</tbody></table>
</div>
  #3 (permalink)  
Antiguo 29/01/2013, 04:01
 
Fecha de Ingreso: mayo-2007
Mensajes: 239
Antigüedad: 16 años, 10 meses
Puntos: 0
Respuesta: Problema de Diseño con la Vista Compatibilidad en IE9

No me deja editar el primer post y puse mal el CODE, lo vuelvo a pegar aquí:
Código:
 @-webkit-keyframes animate-stripes {
 to {
 background- 0;
 }
 
from {
 background- 0;
 }
 }
 
@-moz-keyframes animate-stripes {
 to {
 background- 0;
 }
 
from {
 background- 0;
 }
 }
 
/* Bar which is placed behind the progress */
 .ui-progress-bar {
 /* Usual setup stuff */
 ;
 height: 25px;
 /* Pad right so we don't cover the borders when fully progressed */
 padding-right: 2px;
 /* For browser that don't support gradients, we'll set a blanket background colour */
 background-color: #abb2bc;
 /* Rounds the ends, we specify an excessive amount to make sure they are completely rounded */
 /* Adjust to your liking, and don't forget to adjust to the same amount in .ui-progress */
 -moz-border-radius: 25px;
 -webkit-border-radius: 25px;
 -o-border-radius: 25px;
 -ms-border-radius: 25px;
 -khtml-border-radius: 25px;
 border-radius: 25px;
 /* Background gradient */
 background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #949daa), color-stop(100%, #abb2bc));
 background: -webkit-linear-gradient(#949daa 0%, #abb2bc 100%);
 background: -moz-linear-gradient(#949daa 0%, #abb2bc 100%);
 background: -o-linear-gradient(#949daa 0%, #abb2bc 100%);
 background: -ms-linear-gradient(#949daa 0%, #abb2bc 100%);
 background: linear-gradient(#949daa 0%, #abb2bc 100%);
 /* Give it the inset look by adding some shadows and highlights */
 -moz-box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.5), 0px 1px 0px 0px white;
 -webkit-box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.5), 0px 1px 0px 0px white;
 -o-box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.5), 0px 1px 0px 0px white;
 box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.5), 0px 1px 0px 0px white;
 /* Alt colours */
 /* Progress part of the progress bar */
 }
 .ui-progress-bar.blue .ui-progress {
 background-color: #339BB9!important;
 border: 1px solid #287a91;
 }
 .ui-progress-bar.error .ui-progress {
 background-color: #C43C35 !important;
 border: 1px solid #9c302a;
 }
 .ui-progress-bar.warning .ui-progress {
 background-color: #D9B31A!important;
 border: 1px solid #ab8d15;
 }
 .ui-progress-bar.pendiente .ui-progress {
 background-color: #b3b3b1!important;
 border: 1px solid #8d8d8c;
 }
 .ui-progress-bar.success .ui-progress {
 background-color: #57A957!important;
 border: 1px solid #458845;
 }
 .ui-progress-bar.transition .ui-progress {
 -moz-transition: background-color 0.5s ease-in, border-color 1.5s ease-out, box-shadow 1.5s ease-out;
 -webkit-transition: background-color 0.5s ease-in, border-color 1.5s ease-out, box-shadow 1.5s ease-out;
 -o-transition: background-color 0.5s ease-in, border-color 1.5s ease-out, box-shadow 1.5s ease-out;
 transition: background-color 0.5s ease-in, border-color 1.5s ease-out, box-shadow 1.5s ease-out;
 }
 .ui-progress-bar .ui-progress {
 /* Usual setup stuff */
 ;
 display: block;
 overflow: hidden;
 /* Height should be 2px less than .ui-progress-bar so as to not cover borders and give it a look of being inset */
 height: 23px;
 /* Rounds the ends, we specify an excessive amount to make sure they are completely rounded */
 /* Adjust to your liking, and don't forget to adjust to the same amount in .ui-progress-bar */
 -moz-border-radius: 25px;
 -webkit-border-radius: 25px;
 -o-border-radius: 25px;
 -ms-border-radius: 25px;
 -khtml-border-radius: 25px;
 border-radius: 25px;
 /* Set the background size so the stripes work correctly */
 -webkit-background-size: 44px 44px;
 -moz-background-size: 36px 36px;
 /* Webkit */
 /* For browser that don't support gradients, we'll set a base background colour */
 background-color: #74d04c;
 /* Webkit background stripes and gradient */
 background: -webkit-gradient(linear, 0 0, 44 44, color-stop(0, rgba(255, 255, 255, 0.17)), color-stop(0.25, rgba(255, 255, 255, 0.17)), color-stop(0.26, rgba(255, 255, 255, 0)), color-stop(0.5, rgba(255, 255, 255, 0)), color-stop(0.51, rgba(255, 255, 255, 0.17)), color-stop(0.75, rgba(255, 255, 255, 0.17)), color-stop(0.76, rgba(255, 255, 255, 0)), color-stop(1, rgba(255, 255, 255, 0))), -webkit-gradient(linear, left bottom, left top, color-stop(0, rgba(255, 255, 255, 0)), color-stop(1, rgba(255, 255, 255, 0.35))), #74d04c;
 /* Mozilla (Firefox etc) background stripes */
 /* Note: Mozilla's support for gradients is more true to the original design, allowing gradients at 30 degrees, as apposed to 45 degress in webkit. */
 background: -moz-repeating-linear-gradient(top left -30deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.17) 15px, rgba(255, 255, 255, 0) 15px, rgba(255, 255, 255, 0) 30px), -moz-linear-gradient(rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%), #74d04c;
 -moz-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4), inset 0px -1px 1px rgba(0, 0, 0, 0.2);
 -webkit-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4), inset 0px -1px 1px rgba(0, 0, 0, 0.2);
 -o-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4), inset 0px -1px 1px rgba(0, 0, 0, 0.2);
 box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4), inset 0px -1px 1px rgba(0, 0, 0, 0.2);
 /* Give it a higher contrast outline */
 border: 1px solid #4c8932;
 /* Animate */
 -moz-animation: animate-stripes 2s linear infinite;
 -webkit-animation: animate-stripes 2s linear infinite;
 -o-animation: animate-stripes 2s linear infinite;
 -ms-animation: animate-stripes 2s linear infinite;
 -khtml-animation: animate-stripes 2s linear infinite;
 animation: animate-stripes 2s linear infinite;
 /* Style status label */
 }
 .ui-progress-bar .ui-progress span.ui-label {
 -moz-font-smoothing: antialiased;
 -webkit-font-smoothing: antialiased;
 -o-font-smoothing: antialiased;
 -ms-font-smoothing: antialiased;
 -khtml-font-smoothing: antialiased;
 font-smoothing: antialiased;
 font-size: 13px;
 ;
 right: 0;
 line-height: 23px;
 padding-right: 12px;
 color: rgba(0, 0, 0, 0.6);
 text-shadow: rgba(255, 255, 255, 0.45) 0 1px 0px;
 white-space: nowrap;
 }
 .ui-progress-bar .ui-progress span.ui-label b {
 font-weight: bold;
 }

Etiquetas: compatibilidad, diseño, html, ie9, tabla
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 21:17.