Link to home
Start Free TrialLog in
Avatar of PieP
PieP

asked on

text box

When I click inside my text box the cursor does not start at the top left inside the box.

why?

<P>
   <TEXTAREA name="q6" rows="5" cols="80">
   
   </TEXTAREA>
   
</P>

Avatar of jaysolomon
jaysolomon

Looks like it was taking the blank space into consideration

do this

<P>
   <TEXTAREA name="q6" rows="5" cols="80"></TEXTAREA>
   
</P>
Avatar of PieP

ASKER

Yip that's it. Thanks
1 more thing.

With a table such as the one with head:
<table>
<thead>
<tr>
<th scope="col" style="width: 50%;"></th>
<th scope="col">Poor</th>
<th scope="col">Average</th>
<th scope="col">Good</th>
<th scope="col">Excellent</th>
</tr>
</thead>
<tbody>
...
.....

Is there any way not to have the text in bold, as it is by default
ASKER CERTIFIED SOLUTION
Avatar of jaysolomon
jaysolomon

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial