skip to Main Content

How can i make div in bottom of table td? – Html

How can make a div in bottom of td of table in html? <table style="width:100px;" > <thead class="text-center"> <th>Name</th> <th>Marks</th> </thead> <tbody> <tr> <td>Nikhil</td> <td>60<br>Average</td> </tr> <tr> <td>Akhil</td> <td>90<br>Excellent</td> </tr> <tr> <td>Alan</td> <td>40<br>Poor</td> </tr> </tbody> </table> For reference i have…

VIEW QUESTION
Back To Top
Search