function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Radhe Shyam.Radhe Shyam. 

apex:outPutText text is not wrapping

Hi Guys, facing problem in wrapping the text. Please help.
User-added image


Code:

<apex:outputLabel value="{!$ObjectType.XX__c.fields.Description__c.label}"/>
  <apex:outputText value="{!AutoFollowRullobj.Description__c}" id="theTextInput2" />
RD@SFRD@SF
Hi Radhe,

1. This should not happen by standard, have you used any custom style?
2. The word-wrap attribute should help you control it, use carefully.

Hope it helps
RD
Radhe Shyam.Radhe Shyam.
Hi RD, this is not happening if we are breaking this string by space or enter press. It is happening only when we are typing text without break or without giving space. Please specify the word wrap attribute usage. Thanks in Advance.
RD@SFRD@SF
Hi Radhe,

Set the style attribute word-wrap:break-word.Please follow the link (https://www.w3schools.com/cssref/tryit.asp?filename=trycss3_word-wrap)for syntax and documentation

:) RD