<textarea>
<c:forEach var="item" items="${items}">
<c:out value="welcome"/>
</c:forEach>
</textarea>
This gives unnecessary white spaces in the text area. Remove the extra white space between textarea tags. Although this might sound crazy, this works.
<textarea><c:forEach var="item" items="${items}"><c:out value="welcome"/></c:forEach></textarea>
<c:forEach var="item" items="${items}">
<c:out value="welcome"/>
</c:forEach>
</textarea>
This gives unnecessary white spaces in the text area. Remove the extra white space between textarea tags. Although this might sound crazy, this works.
<textarea><c:forEach var="item" items="${items}"><c:out value="welcome"/></c:forEach></textarea>
No comments:
Post a Comment