HTML. Setting width and height of the table. | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 2

HTML. Setting width and height of the table.

Colleagues, how can I set width and height of each cell of the table? Iā€™ve tried different ways: 1. <table width=ā€œ20ā€> <tr> <td>text</td> <td>text</td> <td>text</td> </tr> </table> and 2. <table> <tr width=ā€œ20ā€> <td>text</td> <td>text</td> <td>text</td> </tr> </table> 3. <table> <tr> <td width=ā€œ20ā€>text</td> <td>text</td> <td>text</td> </tr> </table> But this argument (width=ā€...ā€) doesnā€™t work. Other arguments (bgcolor, href) work correctly. I havenā€™t find any information in forum. Please help!

4th Mar 2021, 10:26 PM
Š Š¾Š¼Š°Š½ Š ŃƒŠ±Ń†Š¾Š²
13 Respostas
+ 4
Š Š¾Š¼Š°Š½ Š ŃƒŠ±Ń†Š¾Š² using width="20" Works fine , 20 is 20px . try something like % or 200
4th Mar 2021, 11:11 PM
Abhay
Abhay - avatar
+ 3
did you try this one? <table style="width:100%"></table>
4th Mar 2021, 11:06 PM
Mohammad Alomari
Mohammad Alomari - avatar
+ 3
Without any unit "20" is considered as 20px , and 20 px is a lot less to see any effect , so try using a big value or % of parent width .
4th Mar 2021, 11:23 PM
Abhay
Abhay - avatar
+ 3
Š Š¾Š¼Š°Š½ Š ŃƒŠ±Ń†Š¾Š² In your table tag you misspelled width as widft Try this and you will see a change (only change this line then look at result) <table style="width:100%" align="center" border="2">
5th Mar 2021, 6:17 AM
Paul K Sadler
Paul K Sadler - avatar
+ 2
characters ā€œ ā€ don't work , use these double quotes , " "
4th Mar 2021, 10:31 PM
Abhay
Abhay - avatar
+ 2
<table style="widfh:20%" align="center" border="2"> <tr style="width:20px"> <td bgcolor="green">ŠŸŠµŃ€Š²Ń‹Š¹</td> <td bgcolor="yellow">Š’Ń‚Š¾Ń€Š¾Š¹</td> <td bgcolor="turquoise">Š¢Ń€ŠµŃ‚ŠøŠ¹</td> </tr> <tr> <td> <a href="https://www.sololearn.com/Course/HTML/?ref=app">HTML</a></td> <td> <a href="https://www.sololearn.com/Course/CSS/?ref=app">CSS</a></td> <td> <a href="https://www.sololearn.com/Course/JavaScript/?ref=app">JavaScript</a></td> </tr> </table> It doesn,t work still. All the other arguments work but neither (width) nor (style) work. Colleags, have you any other ideas - whatā€™s wrong with them?
5th Mar 2021, 1:35 AM
Š Š¾Š¼Š°Š½ Š ŃƒŠ±Ń†Š¾Š²
+ 2
Thank you, guis! Your help is invaluable! I corrected mistake and used ā€œbig valueā€. Now everything works just as it should!
5th Mar 2021, 2:45 PM
Š Š¾Š¼Š°Š½ Š ŃƒŠ±Ń†Š¾Š²
+ 2
"Guysā€ - of course. I should to make my English better too. ))
5th Mar 2021, 2:47 PM
Š Š¾Š¼Š°Š½ Š ŃƒŠ±Ń†Š¾Š²
+ 1
Thanks! I know it. Theese characters ā€œ ā€œ Iā€™ve used just for writing message. In my code correct ones. The qwestion remains. Need your help!
4th Mar 2021, 10:57 PM
Š Š¾Š¼Š°Š½ Š ŃƒŠ±Ń†Š¾Š²
+ 1
Mohammad Alomary, I havenā€™t tried to use this argument. Thanks for information!
4th Mar 2021, 11:18 PM
Š Š¾Š¼Š°Š½ Š ŃƒŠ±Ń†Š¾Š²
+ 1
You'r welcome but did it work??
4th Mar 2021, 11:19 PM
Mohammad Alomari
Mohammad Alomari - avatar
+ 1
Abhay, Iā€™ve tried %, but not ā€œpxā€. Iā€™ll use advice. Thank you!
4th Mar 2021, 11:21 PM
Š Š¾Š¼Š°Š½ Š ŃƒŠ±Ń†Š¾Š²
+ 1
Use % after the value
6th Mar 2021, 4:21 PM
Amal C.k
Amal C.k - avatar