この html コードを jsf で設定しましたが、文字の長さは制限されていませんが、それでも 576 文字を超えています。行数を 4 に設定する必要がありますが、すべてのブラウザーで一貫したスタイルにすることを選択しましたが、これは正しいですか? これがコードです。
<td colspan="7">
<h:outputText id="explanation1"
value="#{handler.document.header.docDesc}"
rendered="#{documentHandler.mode != 2}"/>
<h:inputTextarea id="explanation2"
value="#{documentHandler.document.header.docDesc}"
rendered="#{documentHandler.mode == 2}"
style="height: 60px; width: 705px;">
<f:validateLength maximum="576"/>
</h:inputTextarea>
</td>