Ciao a tutti,
avrei bisogno di fare il bordo di una sola parte di una tabella,
ecco il mio caso pratico in codice
dovrei fare un bordo (un riquadro) che abbia all'interno X, Y, i campi di testo con sfondo giallo e i bottoni asteriscati che stanno accanto.codice:<html> <head> </head> <body> <table align="center"> <tr> <td>Totale 1</td> <td><input name="Tot1" maxLength="30" size=10 style="background:#CCFFFF ;" readonly> <input name="Commento_Tot1" type="button" value="*" onClick="show_hide(this);"> </td> <td>X</td> <td><input name="X" maxLength="5" size=6 style="background:#FFFF00 ;" readonly> <input name="Commento_X" type="button" value="*" onClick="show_hide(this);"></td> </tr> <tr> <td>Totale 2</td> <td><input name="Tot2" maxLength="30" size=10 style="background:#CCFFFF ;" readonly> <input name="Commento_Tot2" type="button" value="*" onClick="show_hide(this);"> </td> <td>Y</td> <td><input name="Y" maxLength="5" size=6 style="background:#FFFF00 ;" readonly> <input name="Commento_Y" type="button" value="*" onClick="show_hide(this);"></td> </tr> <tr> <td>Totale 3</td> <td><input name="Tot3" maxLength="30" size=10 style="background:#CCFFFF ;" readonly> <input name="Commento_Tot3" type="button" value="*" onClick="show_hide(this);"> </td> </tr> <tr> <td>Totale 4</td> <td><input name="Tot4" maxLength="30" size=10 style="background:#FF0000 ;" readonly> <input name="Commento_Tot4" type="button" value="*" onClick="show_hide(this);"> </td> </tr> </body> </html>
Come posso fare?
Grazie![]()