Código CSS:
Ver original
#principal{ width:18%; margin:auto auto; background-color:e0dfe3; border-color:black; border-style:solid; border-width:1px; } #resultado{ width:100%; } input.campotexto{ text-align:right; } input{ font-family:Arial; font-size:20; }
Código HTML:
Ver original
<html> <head> <link rel="stylesheet" type="text/css" href="calculadorabasica.css"> </head> <body> <table id="principal"> <tr> </tr> <tr> <td> <input class="campotexto" type="text" id="resultado"> </td> </tr> <tr> <td> <input type="button"> <input type="button" value="Ayuda" onclick="ayuda()"> <input type="button" value="Retroceso"> <input type="button" value="CE" onclick="borrar(resultado)"> <input type="button" value="C" onclick="borrar(resultado)"> </td> </tr> <tr> <td> <input type="button" value="MC"> <input type="button" value="7" onclick="pulsar(this)"> <input type="button" value="8" onclick="pulsar(this)"> <input type="button" value="9" onclick="pulsar(this)"> <input type="button" value="/" onclick="pulsar(this)"> <input type="button" value="sqrt"> </td> </tr> <tr> <td> <input type="button" value="MR"> <input type="button" value="4" onclick="pulsar(this)"> <input type="button" value="5" onclick="pulsar(this)"> <input type="button" value="6" onclick="pulsar(this)"> <input type="button" value="*" onclick="pulsar(this)"> <input type="button" value="%" onclick="pulsar(this)"> </td> </tr> <tr> <td> <input type="button" value="MS"> <input type="button" value="3" onclick="pulsar(this)"> <input type="button" value="2" onclick="pulsar(this)"> <input type="button" value="1" onclick="pulsar(this)"> <input type="button" value="-" onclick="pulsar(this)"> <input type="button" value="1/x"> </td> </tr> <tr> <td> <input type="button" value="M+"> <input type="button" value="0" onclick="pulsar(this)"> <input type="button" value="+/-"> <input type="button" value=","> <input type="button" value="+" onclick="pulsar(this)"> <input type="button" value="=" onclick="igual(resultado)"> </td> </tr> </table> </body> </html>
He estado probando y quiero dejar las celdas centradas y uniformes en fila, pero no consigo alguna manera de ponerlo, alguien sabria como hacerlo con CSS? u.u Mil gracias!
PD: lo ideal seria que quedaran estilo a la calcu de windows http://image.gxzone.com/images/0/8/08dcc2777cb.jpg >.<