25/12/2011, 00:06
|
| | Fecha de Ingreso: abril-2010
Mensajes: 66
Antigüedad: 14 años, 9 meses Puntos: 0 | |
Por que no funciona en IE? Alguno me dice porque este codigo no se ve en internet explorer?
En firefox y chrome anda perfecto. Código HTML: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<link rel="StyleSheet" href="estilos.css" type="text/css">
<title>TheConquerors</title>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-19269455-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<link href="objetos/favicon.ico" rel="shorcut icon">
</head>
<body>
<br><h1 align="center" style="color: #ffffff;">The Conquerors</h1>
<br><br><h2 align="center" style="color: #ffffff;">Descargar</h2>
<table id="botonera" cellspacing="10">
<tr>
<td><a href="descargas/AOE2.iso" class="button">Age of Kings</a></td>
<td><a href="descargas/AOE2E.iso" class="button">The Conquerors</a></td>
</tr>
</table>
</div>
</body>
</html>
Código:
*{
margin:0px;
padding:0px;
}
body{
background: #65a9d7;
background: -webkit-gradient(linear, left top, left bottom, from(#3e779d), to(#65a9d7));
background: -webkit-linear-gradient(top, #3e779d, #65a9d7);
background: -moz-linear-gradient(top, #3e779d, #65a9d7);
background: -ms-linear-gradient(top, #3e779d, #65a9d7);
background: -o-linear-gradient(top, #3e779d, #65a9d7);
text-shadow: rgba(0,0,0,.4) 0 3px 0;
font-family: Arial;
cursor:default;
-moz-user-select: none;
-o-user-select: none;
-webkit-user-select: none;
-ie-user-select: none;
user-select: none;
height: 100%;
}
#botonera{
margin: 0px auto;
}
.button {
border-top: 1px solid #96d1f8;
background: #65a9d7;
background: -webkit-gradient(linear, left top, left bottom, from(#3e779d), to(#65a9d7));
background: -webkit-linear-gradient(top, #3e779d, #65a9d7);
background: -moz-linear-gradient(top, #3e779d, #65a9d7);
background: -ms-linear-gradient(top, #3e779d, #65a9d7);
background: -o-linear-gradient(top, #3e779d, #65a9d7);
padding: 10px 10px;
-webkit-border-radius: 9px;
-moz-border-radius: 9px;
border-radius: 9px;
-webkit-box-shadow: rgba(0,0,0,1) 0 1px 0;
-moz-box-shadow: rgba(0,0,0,1) 0 1px 0;
box-shadow: rgba(0,0,0,1) 0 1px 0;
text-shadow: rgba(0,0,0,.4) 0 1px 0;
color: white;
font-size: 18px;
font-family: Georgia, serif;
text-decoration: none;
text-align:center;
vertical-align: middle;
width:155px;
float:left;
}
.button:hover {
border-top-color: #28597a;
background: #28597a;
color: #ccc;
}
.button:active {
border-top-color: #1b435e;
background: #1b435e;
}
|