2

I have simple web form to collect data from a user. In my particular case i'm making use of the JSON field to collect a custom data structure.

Is it possible to change the height/size of a JSON field?

okrunner
  • 3,083
  • 29
  • 22

1 Answers1

2

Add the following CSS rule to your stylesheet:

.CodeMirror {
  height: auto;
}

Now the JSON edition field widget will match the height of the serialized JSON!

François Zaninotto
  • 7,068
  • 2
  • 35
  • 56