CSS - Problemas con Internet Explorer

 
Vista:

Problemas con Internet Explorer

Publicado por Angelvv (1 intervención) el 28/12/2013 18:44:02
Por que muchos de los efectos de estilos no funcionan en Internet Explorer, alguien me puede ayudar a corregir esto por favor. Por ejemplo estos estilos no funciona pero en google chrome si y en firefox también.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
.box {
        /* basic styling */
        width: 350px;
        height: 95px;
        border: 1px solid #555;
        font: 14px Arial;
 
        /* flexbox setup */
        display: -webkit-box;
        -webkit-box-orient: horizontal;
 
        display: -moz-box;
        -moz-box-orient: horizontal;
 
        display: box;
        box-orient: horizontal;
      }
 
      .box > div {
        -webkit-box-flex: 1;
        -moz-box-flex: 1;
        box-flex: 1;
 
        -moz-transition: width 0.7s ease-out;
        -o-transition: width 0.7s ease-out;
        -webkit-transition: width 0.7s ease-out;
        transition: width 0.7s ease-out;
      }
 
      /* our colors */
      .box > div:nth-child(1){ background : #FCC; }
      .box > div:nth-child(2){ background : #CFC; }
      .box > div:nth-child(3){ background : #CCF; }
 
      .box > div:hover {
        width: 200px;
      }
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder
Imágen de perfil de xve
Val: 624
Oro
Ha mantenido su posición en CSS (en relación al último mes)
Gráfica de CSS

Problemas con Internet Explorer

Publicado por xve (490 intervenciones) el 28/12/2013 19:41:42
Hola Angelw, que versión de explorer estas utilizando?

Cada versión de Explorer tiene cambios diferenciales que siempre nos han vuelto locos por no seguir los estandares a los que hemos tenido que maquetar webs...

Ya desde hace tiempo, el que vaya con Explorer, si lo ve mal, que cambie de navegador... Ya no programamos para IE.

Si intentas que se vea bien en las diferentes versiones de Explorer.... uff... no te lo recomiendo.

Espero que te sirva.
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar