HTML...TAG ERRATI ?

di il
2 risposte

HTML...TAG ERRATI ?

Vorrei inserire dei link in una tabella ma non ci riesco.... ecco cosa ho fatto ma non va: potete aiutarmi velocemente. Grazie

<table border="2">

<tr>
<td><a href="Home.html"> Home </a></td>
<td><a href="Registrazione.html"> Registrazione </td>
<td><a href="Contatti.html"> Contatti </a></td>
</tr>

</table>

2 Risposte

  • Re: HTML...TAG ERRATI ?

    Ti ricordo che l'attributo "border" non è supportato in HTML 5 quindi ti conviene usare il CSS per definire il bordo in questo modo:
    
    <table style = "border-width: 3px">
    <!-- Elementi -->
    </table>
    
    Inoltre nel tuo border non hai specificato l'unità di misura cioè i pixel (px). Ciao!
  • Re: HTML...TAG ERRATI ?

    Oltre l'attributo non più supportato detto da skizzo66,
    manca la chiusura del secondo tag anchor.

    i tag non chiusi, creano diversi probemi!
Devi accedere o registrarti per scrivere nel forum
2 risposte