Td to add scroll bars

<td class="rigthtd" style="width: 40%">
   <div style="overflow-y:scroll;height:60px;white-space:pre-wrap">
      ${position.specificTasks}
   </div>
</td>

td itself is no scroll bar, line breaks will force increased,
so the need to use div, overflow-y: scroll scroll bar, white-space: pre-wrap wrap
or with textarea

Guess you like

Origin blog.csdn.net/weixin_44919928/article/details/91651454