0
Can I increase the size of the table?
Table size
4 Answers
+ 3
Have you tried this?
<table width="100%">
...
...
</table>
+ 3
Maybe use CSS instead, paste this between <head> and </head> and wrap within <style></style> section in your html file, or just paste in the CSS tab if you do this in Playground.
table{width:100%;border-collapse:collapse;}
th{height:36px; background-color:#aabaca;}
td{height:30px; padding:5px; border-bottom:solid 1px #ccc;}
0
Yes please, but only the width I increased. I tried to increase the length by trying table length=100% and table height=100% but the length remained the same
0
Alright. Thank you very much for responding. It's much appreciated. I'm yet to learn CSS, I guess I'll have a better understanding of it when I do