0
Can I align content inside table?
4 ответов
+ 3
Html:
(Make a table)
Css:
td {
text-align: center;
}
+ 2
Yes yes you can. Explore it you will find many more features of alignment in table
+ 1
Yea sure using css style inside HTML.
+ 1
Yeah of course ! Using CSS . The syntax is:
Make a table in Html
suppose <td class="class"> Your text in table</td>
CSS RULES
td .class{
text-align:center;
}
By this way you can even align a particular cell .
Hope this one helps. 😊😊😊