Hi @agrace91 ,
From your screenshot, it seems that the "answers" column is a multiple lines of text column with enhanced rich text enabled, right? I tried using JSON formatting to customize a div of the column field container with below code.
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"elmType": "div",
"style": {
"width": "500px",
"height": "500px"
},
"txtContent": "@currentField"
}
However, the contents inside the column fields are displayed as the source HTML code after applying the JSON code.
As per my research, JSON formatting is not suppoted in multiple lines of text columns with enhanced rich text enabled. As an alternative, you can use a muliple lines of text column with enhanced rich text disabled and format it with the above JSON code.
You can customize the parameter "width" or "height" of div in the code to meet your own requirement. And you can disable enhanced rich text by setting "Use enhanced rich text..." to No when editing column.
If an Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.