Dar Lym
Dar Lym

Reputation: 183

textarea in table

Please tell me how I can hide textarea in td table, what attribute must I use?

<td class='odd text'><textarea placeholder='Start time' ></textarea>  </td>

Upvotes: 0

Views: 114

Answers (2)

Adam Thornton
Adam Thornton

Reputation: 172

It seems having the table in this question makes no difference. To make the textarea hidden set the style attribute display:none like so:

<td class='odd text'><textarea placeholder='Start time' style="display:none" ></textarea>  </td>

Upvotes: 0

Niet the Dark Absol
Niet the Dark Absol

Reputation: 324620

Same as hiding anything else: style="display:none".

Upvotes: 3

Related Questions