yfoliveira Postado Setembro 24, 2012 Denunciar Share Postado Setembro 24, 2012 Olá,Estou com um problema no meu programa, quando vou rodar na m... do internet explorer ele da problema.Os buttons perdem a função, não fazem nada quando clico neles e uma parte do efeito que botei numa class td perde o efeito.Desculpe se tiver algum erro ou algo do tipo é que sou novato nessa área.segui os codigos:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>Untitled Document</title><link href="../arqs/style.css" rel="stylesheet" type="text/css" /></head><body><div id = "todoconteudo"> <form method="post" action= "<?php echo $_SERVER['PHP_SELF']; ?>"><table cellspacing=0" cellpadding="0" border="1" align="center"><col width="29" /><col width="329" /><col width="166" /><col width="90" /><tr height="100px"><td scope="col" colspan="5" height="60px" align="center"><img src="../imagens/ideia.jpg" width="224" height="60" alt="Instituto IDEIA" title="http://www.ideiaeduc.com.br/" style="margin-bottom:12px;"/> <img src="../imagens/ua.jpg" width="130" height="83" alt="Universidad Americana" style="margin-top:5px;" /></td></tr><tr><td colspan="4" align="center" class="td"><strong>PLANILHA DE NOTAS</strong></td></tr><tr><td colspan="4">DOCTORADO EN ADMINISTRACIÓN: DA 1.1/12 – julho 2012</td></tr><tr><td colspan="4">ASIGNATURA: Contabilidade Gerenciali</td></tr><tr><td colspan="4">PROFESOR: Gustavo Adolfo Valenzuela Ferreira </td></tr><tr class="td"><td width="29"><div align="center"><strong>Nº</strong></div></td><td width="330"><div align="center"><strong>APELLIDOS Y NOMBRES</strong></div></td><td width="167"><div align="center"><strong>CEDULA IDENTIDAD</strong></div></td><td width="107"><div align="center"><strong>NOTA FINAL</strong></div></td></tr><tr><td width="29"><div align="center">1</div></td><td>Ricardo de Bonis</td><td>14087</td><td><div align="center"><?php//conecta-se ao banco de dados$dbc = mysqli_connect('localhost','root','','planilha_de_notas') or die( mysqli_error());//Obtem os dados dos alunos$query = "SELECT * FROM da1112 order by id desc limit 1";$result = mysqli_query($dbc, $query) or die or die (mysqli_error());while ($row = mysqli_fetch_array($result)) {echo $row['nota1].'<br>';}mysqli_close($dbc);?></div></td></tr><tr><td width="29"><div align="center">2</div></td><td>Maria de Fátima B. Silva</td><td>0856421421</td><td><div align="center"><?php//conecta-se ao banco de dados$dbc = mysqli_connect('localhost','root','','planilha_de_notas') or die( mysqli_error());//Obtem os dados dos alunos$query = "SELECT * FROM da1112 order by id desc limit 1";$result = mysqli_query($dbc, $query) or die or die (mysqli_error());while ($row = mysqli_fetch_array($result)) {echo $row['nota2'].'<br>';}mysqli_close($dbc);?></div></td></tr><tr><td width=29"><div align="center">3</div></td><td>Anisia Darc do N. Brahim</td><td>063849699</td><td><div align="center"><?php//conecta-se ao banco de dados$dbc = mysqli_connect('localhost','root','','planilha_de_notas') or die( mysqli_error());//Obtem os dados dos alunos$query = "SELECT * FROM da1112 order by id desc limit 1";$result = mysqli_query($dbc, $query) or die or die (mysqli_error());while ($row = mysqli_fetch_array($result)) {echo $row['nota3];}mysqli_close($dbc);?></div></td></tr></table><p align="center"><a href="da.1.1.12.php"><input type = "button" value = "CLIQUE AQUI PARA CADASTRAR A NOTA" name = "cadastrar" class = "botao" /></a><br /><br /><a href="../escolha_turma.html"><input type = "button" value = "VOLTAR" name = "voltar" class = "botao"/></a></p></body></html>e a css:@charset "utf-8";/* CSS Document */#todoconteudo {width: 800px;padding-top: 40px;padding-bottom: 5px;margin-right: auto;margin-left: auto; }body { font-family: Georgia, "Times New Roman", Times, serif;font-size: small;margin: 0px;}.td { background-color: #90b9e8 !important;background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#90b9e8), color-stop(100%, #c6dcf5 )) !important;background: -webkit-linear-gradient(top, #90b9e8,#c6dcf5) !important;background: -moz-linear-gradient(top, #90b9e8, #c6dcf5) !important;background: -ms-linear-gradient(top, #90b9e8, #c6dcf5) !important;background: -o-linear-gradient(top, #90b9e8, #c6dcf5) !important;filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#90b9e8', endColorstr='#c6dcf5',GradientType=0 );/* Background gradient */background: #90b9e8;background: -moz-linear-gradient(top, #90b9e8 0%, #bdd3ed 100%);background: -webkit-gradient(linear, 0% 0%, 0% 100%,from(#90b9e8), to(#bdd3ed));font-weight: bold;color: #000; }.botao {/* determina que o conteúdo do span ficará com 4px de espaço acima e abaixo do conteúdo, e 11px em cada lateral. */padding: 4px 11px;/* border determinam, respectivamente: a borda do span deverá ter 1 pixel de espessura; será sólido */border: 1px solid #90b9e8;-moz-border-radius: 8px;-webkit-border-radius: 8px;border-radius: 8px;/*O border-radius é uma propriedade moderna, que determina o quanto arredondadas serão as arestas do elemento que recebe-a.*/background-color: #90b9e8 !important;background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#90b9e8), color-stop(100%, #c6dcf5 )) !important;background: -webkit-linear-gradient(top, #90b9e8,#c6dcf5) !important;background: -moz-linear-gradient(top, #90b9e8, #c6dcf5) !important;background: -ms-linear-gradient(top, #90b9e8, #c6dcf5) !important;background: -o-linear-gradient(top, #90b9e8, #c6dcf5) !important;filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#90b9e8', endColorstr='#c6dcf5',GradientType=0 );font-family:"Segoe UI";font-weight: bold;color: #000;text-shadow: 0 1px 0 #666;/*responsável por sombras no elemento */box-shadow: inset 0 1px 1px #fff, 0 2px 3px #666;cursor:pointer;position: relative;} Citar Link para o comentário Compartilhar em outros sites More sharing options...
Pergunta
yfoliveira
Olá,
Estou com um problema no meu programa, quando vou rodar na m... do internet explorer ele da problema.
Os buttons perdem a função, não fazem nada quando clico neles e uma parte do efeito que botei numa class td perde o efeito.
Desculpe se tiver algum erro ou algo do tipo é que sou novato nessa área.
segui os codigos:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<link href="../arqs/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id = "todoconteudo">
<form method="post" action= "<?php echo $_SERVER['PHP_SELF']; ?>">
<table cellspacing=0" cellpadding="0" border="1" align="center">
<col width="29" />
<col width="329" />
<col width="166" />
<col width="90" />
<tr height="100px">
<td scope="col" colspan="5" height="60px" align="center">
<img src="../imagens/ideia.jpg" width="224" height="60" alt="Instituto IDEIA" title="http://www.ideiaeduc.com.br/" style="margin-bottom:12px;"/>
<img src="../imagens/ua.jpg" width="130" height="83" alt="Universidad Americana" style="margin-top:5px;" />
</td>
</tr>
<tr>
<td colspan="4" align="center" class="td"><strong>PLANILHA DE NOTAS</strong></td>
</tr>
<tr>
<td colspan="4">DOCTORADO EN ADMINISTRACIÓN: DA 1.1/12 – julho 2012</td>
</tr>
<tr>
<td colspan="4">ASIGNATURA:
Contabilidade Gerenciali</td>
</tr>
<tr>
<td colspan="4">PROFESOR: Gustavo Adolfo Valenzuela Ferreira </td>
</tr>
<tr class="td">
<td width="29"><div align="center"><strong>Nº</strong></div></td>
<td width="330"><div align="center"><strong>APELLIDOS Y NOMBRES</strong></div></td>
<td width="167"><div align="center"><strong>CEDULA IDENTIDAD</strong></div></td>
<td width="107"><div align="center"><strong>NOTA FINAL</strong></div></td>
</tr>
<tr>
<td width="29"><div align="center">1</div></td>
<td>Ricardo de Bonis</td>
<td>14087</td>
<td><div align="center">
<?php
//conecta-se ao banco de dados
$dbc = mysqli_connect('localhost','root','','planilha_de_notas') or die( mysqli_error());
//Obtem os dados dos alunos
$query = "SELECT * FROM da1112 order by id desc limit 1";
$result = mysqli_query($dbc, $query) or die or die (mysqli_error());
while ($row = mysqli_fetch_array($result)) {
echo $row['nota1].'<br>';
}
mysqli_close($dbc);
?>
</div></td>
</tr>
<tr>
<td width="29"><div align="center">2</div></td>
<td>Maria de Fátima B. Silva</td>
<td>0856421421</td>
<td><div align="center">
<?php
//conecta-se ao banco de dados
$dbc = mysqli_connect('localhost','root','','planilha_de_notas') or die( mysqli_error());
//Obtem os dados dos alunos
$query = "SELECT * FROM da1112 order by id desc limit 1";
$result = mysqli_query($dbc, $query) or die or die (mysqli_error());
while ($row = mysqli_fetch_array($result)) {
echo $row['nota2'].'<br>';
}
mysqli_close($dbc);
?>
</div></td>
</tr>
<tr>
<td width=29"><div align="center">3</div></td>
<td>Anisia Darc do N. Brahim</td>
<td>063849699</td>
<td><div align="center">
<?php
//conecta-se ao banco de dados
$dbc = mysqli_connect('localhost','root','','planilha_de_notas') or die( mysqli_error());
//Obtem os dados dos alunos
$query = "SELECT * FROM da1112 order by id desc limit 1";
$result = mysqli_query($dbc, $query) or die or die (mysqli_error());
while ($row = mysqli_fetch_array($result)) {
echo $row['nota3];
}
mysqli_close($dbc);
?>
</div></td>
</tr>
</table>
<p align="center"><a href="da.1.1.12.php">
<input type = "button" value = "CLIQUE AQUI PARA CADASTRAR A NOTA" name = "cadastrar" class = "botao" /></a>
<br />
<br />
<a href="../escolha_turma.html">
<input type = "button" value = "VOLTAR" name = "voltar" class = "botao"/>
</a>
</p>
</body>
</html>
e a css:
@charset "utf-8";
/* CSS Document */
#todoconteudo {
width: 800px;
padding-top: 40px;
padding-bottom: 5px;
margin-right: auto;
margin-left: auto;
}
body {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: small;
margin: 0px;
}
.td {
background-color: #90b9e8 !important;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#90b9e8), color-stop(100%, #c6dcf5 )) !important;
background: -webkit-linear-gradient(top, #90b9e8,#c6dcf5) !important;
background: -moz-linear-gradient(top, #90b9e8, #c6dcf5) !important;
background: -ms-linear-gradient(top, #90b9e8, #c6dcf5) !important;
background: -o-linear-gradient(top, #90b9e8, #c6dcf5) !important;
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#90b9e8', endColorstr='#c6dcf5',GradientType=0 );
/* Background gradient */
background: #90b9e8;
background: -moz-linear-gradient
(top, #90b9e8 0%, #bdd3ed 100%);
background: -webkit-gradient
(linear, 0% 0%, 0% 100%,
from(#90b9e8), to(#bdd3ed));
font-weight: bold;
color: #000;
}
.botao {
/* determina que o conteúdo do span ficará com 4px de espaço acima e abaixo do conteúdo, e 11px em cada lateral. */
padding: 4px 11px;
/* border determinam, respectivamente: a borda do span deverá ter 1 pixel de espessura; será sólido */
border: 1px solid #90b9e8;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
border-radius: 8px;
/*O border-radius é uma propriedade moderna, que determina o quanto arredondadas serão as arestas do elemento que recebe-a.*/
background-color: #90b9e8 !important;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#90b9e8), color-stop(100%, #c6dcf5 )) !important;
background: -webkit-linear-gradient(top, #90b9e8,#c6dcf5) !important;
background: -moz-linear-gradient(top, #90b9e8, #c6dcf5) !important;
background: -ms-linear-gradient(top, #90b9e8, #c6dcf5) !important;
background: -o-linear-gradient(top, #90b9e8, #c6dcf5) !important;
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#90b9e8', endColorstr='#c6dcf5',GradientType=0 );
font-family:"Segoe UI";
font-weight: bold;
color: #000;
text-shadow: 0 1px 0 #666;
/*responsável por sombras no elemento */
box-shadow: inset 0 1px 1px #fff, 0 2px 3px #666;
cursor:pointer;
position: relative;
}
Link para o comentário
Compartilhar em outros sites
0 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.