Ver Mensaje Individual
  #1 (permalink)  
Antiguo 30/11/2014, 20:56
quico5
 
Fecha de Ingreso: enero-2008
Mensajes: 580
Antigüedad: 16 años, 4 meses
Puntos: 9
Flex - Sticky Footer - no funciona en IE10 ni IE11

Tengo IE11 y emulando IE10, en cualquiera de los dos me falla Flex, en Chrome y Firefox funciona perfectamente, ¿hasta IE12 no habra un soporte definitivo de flex?

¿se puede hacer algo al respecto? gracias

Código HTML:
<!DOCTYPE html>
<html lang="es">
<head>
	<meta charset="UTF-8"/>
	<title>Document</title>
</head>
<style>
body {
	margin: 0;
	display: -ms-flexbox;
	display: flex;
	min-height: 100vh;
	-ms-flex-direction:column;
	flex-direction: column;
}

main {
	-ms-flex: 1;
	flex: 1;
}
</style>
<body>
	<header>header</header>
	<main>main</main>
	<footer>footer</footer>
</body>
</html>