0

Is it possible to create check boxes inside textarea component? I am using simple html and css. I know we can do with tables. But can we do it in textarea?

EmeraldTablet
  • 812
  • 3
  • 12
  • 30

1 Answers1

0

No as you cannot use Rendered HTML within a <textarea>, it's impossible to create a checkbox inside a textarea.

But you could use a <div contenteditable="true">, to accomplish your goal. See also: Can I embed HTML formatting inside of a <textarea> tag? and Convert html tag in textarea to rich text

Community
  • 1
  • 1
Jacob van Lingen
  • 8,989
  • 7
  • 48
  • 78