Can I increase the size of the table? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Can I increase the size of the table?

Table size

22nd Jul 2017, 4:20 AM
Kwesi
4 Answers
+ 3
Have you tried this? <table width="100%"> ... ... </table>
22nd Jul 2017, 5:02 AM
Ipang
+ 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;}
22nd Jul 2017, 11:11 AM
Ipang
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
22nd Jul 2017, 9:29 AM
Kwesi
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
22nd Jul 2017, 11:13 AM
Kwesi