大家好,
在Zoho Creator中,“添加注释”字段通常用于向用户提供说明或其他信息,例如显示“条款和条件”或其他重要信息。但是,如何在不使表格过长的情况下在“添加注释”字段中添加冗长的文本呢?答案是使用HTML将滚动条添加到“添加注释”字段。
请按照以下步骤将滚动条添加到您自己的“添加注释”字段中:
第1步
将“添加注释”字段拖放到表单构建器中,然后在“字段属性”中单击“注释”。
第2步
单击窗口左上角的“编辑HTML”选项。
第三步
添加要显示的内容,然后使用下面给出的代码添加可滚动条。
- <div class="myBox">
- This is where the content should be added.
- </div>
- <style>
- /* Box styles */
- .myBox {
- border: none;
- padding: 5px;
- font: 24px/36px sans-serif; width: 200px;
- height: 200px; overflow: scroll; }
- /* Scrollbar styles */ ::-webkit-scrollbar { width: 12px;height: 12px; }
- ::-webkit-scrollbar-track { border: 1px solid yellowgreen; border-radius: 10px; }
- ::-webkit-scrollbar-thumb { background: yellowgreen; border-radius: 10px;}
- ::-webkit-scrollbar-thumb:hover { background: #88ba1c;}
- </style>
现在,您可以访问应用程序的实时模式以找到可滚动的“添加注释”字段!
我们希望这篇文章对您有用。如果您有任何疑问,请随时在下面的评论中提问,我们很乐意尽快解决!
下次再见,还有更多有趣的创作者提示!