संपूर्ण पृष्ठ को * लपेटने योग्य एक main.css फ़ाइल में परिभाषित किया गया है
/* Wrappable cell
* Add this class to make sure the text in a cell will wrap.
* By default, data_table tds do not wrap.
*/
td.wrappable,
table.data_table td.wrappable {
white-space: normal;
}
पूरे पृष्ठ को पाले:
<%@ include file="../../include/pre-header.html" %>
<form id="commentForm" name="commentForm" action="" method="post">
<ctl:vertScroll height="300" headerStyleClass="data_table_scroll" bodyStyleClass="data_table_scroll" enabled="${user.scrollTables}">
<ctl:sortableTblHdrSetup topTotal="false" href="show.whatif_edit_entry? entryId=${entry.entryId}" />
<table class="data_table vert_scroll_table">
</tr>
<tr>
<ctl:sortableTblHdr styleClass="center" title="Comments" property="comment" type="top">Comments</ctl:sortableTblHdr>
</tr>
<c:forEach var="comments" items="${entry.comments}">
<tr id="id${comments.id}">
<td id="comments-${comments.id}" class="wrappable" style="width:400px;">${comments.comment}</td>
</tr>
</c:forEach>
<c:if test="${lock.locked || form.entryId < 0 }">
<%-- This is the row for adding a new comment. --%>
<tr id="commentRow">
<td><input type="text" id="comment" name="comment" size="50" maxlength="250" onkeypress="javascript:return noenter();" />
<a href="javascript:addComment();"><img src="../images/icon_add.gif" border="0" alt="Add"/></a>
</td>
</tr>
</c:if>
</table>
</ctl:vertScroll>
</form>
यह बस हर बार जब मैं जमा करता हूं
यह पृष्ठ एक div के भीतर भी है। क्या मुझे div और टेबल की चौड़ाई भी सेट करने की आवश्यकता है?
.wrappable
कक्षा को कहाँ परिभाषित किया गया है? आप कौन सा ब्राउज़र उपयोग कर रहे हैं?
max-width
। बहुत सारी अन्य चीजें हैं जो समस्या हो सकती हैं और अधिक जानकारी के बिना कहना असंभव है, लेकिन यह एक है जिसे तोड़ा जा सकता है।
wrappable
?