Answers for "how to add a border to a clicked table cell using html and css"

9

html create a table

<html>
 <head>
   <title>Working with HTML Tables</title>
 </head>
 <body>
   <table>				<!-- create an table object -->
     <tr>				<!-- "tr" represents a row -->
       <th>Name</th>	<!-- use "th" to indicate header row -->
       <th>Date of Birth</th>
       <th>Weight</th>
     </tr> 
     <tr>				<!-- once again use tr for ano
Posted by: Guest on March-10-2020

Code answers related to "how to add a border to a clicked table cell using html and css"

Browse Popular Code Answers by Language