+ 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!
13 Answers
+ 4
Роман Рубцов using width="20" Works fine , 20 is 20px . try something like % or 200
+ 3
did you try this one?
<table style="width:100%"></table>
+ 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 .
+ 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">
+ 2
characters “ ” don't work , use these double quotes , " "
+ 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?
+ 2
Thank you, guis!
Your help is invaluable!
I corrected mistake and used “big value”. Now everything works just as it should!
+ 2
"Guys” - of course. I should to make my English better too. ))
+ 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!
+ 1
Mohammad Alomary, I haven’t tried to use this argument. Thanks for information!
+ 1
You'r welcome
but did it work??
+ 1
Abhay, I’ve tried %, but not “px”. I’ll use advice.
Thank you!
+ 1
Use % after the value