Here is the CSS code that I am using:
.SubjectCell{
width: 300px;
padding-left: 3em;
padding-right: 2em;
color: black;
font-size: 20px;
word-wrap:break-word;
}
I have applied this class to a table cell within a table in my datalist:
<td class="SubjectCell">
<br />
<p>SOMEVERYVERYVERYVERYVERYVERYVERYVERYlongword</p>
</td>
However, the words are not breaking as expected. Can anyone provide assistance with this issue? Thank you.