+ 3
Height
Please How can I make height of the head of my table more than the rest https://code.sololearn.com/W25i71i5M9GN/?ref=app
16 Answers
+ 3
Ah okay, use height attribute after your width attribute to increase height, try this!
<tr class="rrr">
<td width=20% height=50px>month</td>
<td width=15% height=50px>week</td>
<td width=5% height=50px>day</td>
</tr>
+ 3
Use the height attribute
+ 2
Hi,
You want to increase height from your HTML Document head?
+ 2
You already have a class named 'rrr' for those 3 elements. So, using css would would save you some time and make the code cleaner.
.rrr{
height: 50px;
}
+ 2
Hmm, does this show any effect for you?
https://code.sololearn.com/WIiuMspMohPm/
BTW, there's a typo on line 12 for value of height.
+ 1
It works thanks 😌🙏
+ 1
Np 😉
+ 1
Thanks Lord😌🙏
+ 1
the height of the text in a html or paragraph</p> is a element called col
here is a example
<input row=“2” <a col=“5”
The col element is the width and the row is the height the height
0
Yes
0
Can I?
0
The head section? Who contains '' my table ''?
0
No the head of the table that contain month, week and day
0
Ok let me try
0
I did that but no effect 😊
0
Good