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
sfdc G 9sfdc G 9 

How to allign text in text area left in visualforce page?

HI All,
I have Text area as below, I need to alling text to left, I can see some space in left, I want to remove that.
Kindly help.
User-added image

 
<table style="padding-left:180px;">
<tr>
<td>
<textarea readonly="readonly" style = "resize:none; max-height:100px; min-height:100px; resize:horizontal; max-width:845px; min-width:845px;">
                CST MUST include detailed notes to explain all SEV increases 
                
                What is the business Impact:

                Please describe the issue with as much detail as possible including specific error messages:

</textarea>
</td>
</tr>
</table>
Thanks in Advance,
Deepak
 
Gokula KrishnanGokula Krishnan
Hi Deepak,

In your code, you have given space before the text CST(line 05), What(line 07) and Please(line 09). Delete the space, then it will looks aligned in left.

Thanks!!!

If it helps you, please mark is as best answer, so it will be helpful for other developers.