[HTML] Aiutino su costruzione tabella :)

Domenico2013

Utente Attivo
6 Ago 2013
178
0
16
Buongiorno a tutti del forum, ho avuto una leggera amnesia sulle tabelle :)
Ho questa tabella in output, vedere allegato. Non so come modificare la porzione di codice per scrivere il 2 sotto la S e il 3 sotto la D. Vi posto il codice.
Grazie.
Codice:
<table border="1">

<thead>
<tr><th></th><th>V</th><th>S</th><th>D</th></tr>
</thead>

<tbody>
<tr>
<td>Grado Cognome Nome</td>
<td>


<table>

<tbody><tr><td>1</td></tr></tbody>

</table>
</td>
</tr>
</tbody>

</table>
 

Allegati

  • tabella.PNG
    tabella.PNG
    1,7 KB · Visite: 332

marino51

Utente Attivo
28 Feb 2013
3.203
207
63
Lombardia
provo ad ampliare il tuo esempio, sperando ti sia utile
HTML:
<table border="1">
  <thead>
    <tr>
      <th>Grado</th>
      <th>Cognome Nome</th>
      <th>V</th>
      <th>S</th>
      <th>D</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Ten</td>
      <td>Rossi Mario</td>
      <td>1</td>
      <td>2</td>
      <td>3</td>
    </tr>
    <tr>
      <td>Cap</td>
      <td>Bianchi Roberto</td>
      <td>4</td>
      <td>5</td>
      <td>6</td>
    </tr>
  </tbody>
</table>

upload_2019-11-6_11-27-54.png
 

Max 1

Super Moderatore
Membro dello Staff
SUPER MOD
MOD
29 Feb 2012
4.449
338
83
HTML:
<table border="1">
  <tr>
    <td>&nbsp;</td>
    <td>V</td>
    <td>S</td>
    <td>D</td>
  </tr>
  <tr>
    <td>Grado Cognome Nome</td>
    <td>1</td>
    <td>2</td>
    <td>3</td>
  </tr>
</table>
 

Domenico2013

Utente Attivo
6 Ago 2013
178
0
16
Ragazzi, grazie mille per la tempestività e precisione. Davvero ho avuto un vuoto di memoria, che vergogna :(
Marino51, il tuo esempio va benissimo :)
 
Discussioni simili
Autore Titolo Forum Risposte Data
G Pagina html in stringa PHP 2
E Sostituzione Elemento Html PHP 3
G Elementi HTML HTML e CSS 1
K Visualizzare del html responsive in una Webview Sviluppo app per Android 0
T Domanda valutazione html LinkedIn 2022 pt3 HTML e CSS 7
T Domanda valutazione html LinkedIn 2023 pt2 HTML e CSS 15
T Domanda valutazione html LinkedIn 2023 pt1 HTML e CSS 1
MarcoGrazia Salvataggio HTML in database PHP 2
K posizionare variabile da pagina html all'iframe. Javascript 1
peppe0703 Come Estrarre dati da db wordpress e richiamarli in html esterno HTML e CSS 0
L problema collegamento file css con html HTML e CSS 1
D Informazioni da XAMPP su HTML PHP 0
R Immagini html HTML e CSS 2
K File audio in html, chi mi può aiutare? HTML e CSS 0
K Aiuto con file audio in html HTML e CSS 1
Antonio67 Lanciare file shell bash da html HTML e CSS 2
M Riportare in tabella HTML dati estratti con query SQL MySQL 0
G Codice html Javascript 1
M Collegamento tra form html e script php PHP 4
L Ricezione dei dati su file php da modulo html PHP 6
F Creare elementi html con javascript Javascript 3
G Appicazione HTML per inserimento dai in Database Access Microsoft HTML e CSS 0
W visualizzare solo file html e sottocartelle di una cartella PHP 1
C Dopo chiusura del tag php la stringa html va a capo PHP 1
G img html HTML e CSS 3
M Come fare un countdown in HTML? HTML e CSS 4
D Stampa a video in altra pagina html Database 3
A inserire variabile php colore in div html PHP 2
F Tv in html Offerte e Richieste di Lavoro e/o Collaborazione 1
N Script elenco file HTML HTML e CSS 5
L salvare codice html in mysql PHP 3
Cosina htaccess redirect 301 senza estensione html Web Server 6
E Errore di lettura php in html PHP 8
M HTML e PHP Offerte e Richieste di Lavoro e/o Collaborazione 3
C Form email php su pagina index.html? PHP 21
Shyson Meglio Javascript o HTML? Javascript 4
P inserimento icone social tramite html HTML e CSS 1
Z Mod_rewrite da HTML in PHP PHP 3
L Collegare un form html ad un database access Javascript 2
P HTML integrazione wordpress HTML e CSS 0
C [RISOLTO]Inserimento variabile php in input html PHP 20
L Eliminare estensione .html HTML e CSS 9
max1974 html in tooltip Javascript 0
C Risalire al php da html PHP 27
felino Esportare tabella HTML in PDF, quale libreria usare? Javascript 1
webmachine [PHP] [JAVASCRIPT] Form strano in HTML PHP PHP 1
L [RISOLTO] Stampa a video risultato count in html PHP 13
V Servizio design pagina web e download in self contained html file Discussioni Varie 1
F [PHP] Form html PHP 2
G Aiuto HTML, collegamento con un bottone a una <div> di un' altra pagna HTML e CSS 5

Discussioni simili