Note that there are some explanatory texts on larger screens.

plurals
  1. POHTML textarea appearance changed after a click inside?
    primarykey
    data
    text
    <p>My <code>Textarea</code> appearance will be changed after I clicked inside it. This will happens in <code>google-chrome</code> , <code>Safari</code>. Also it displays a scroll bar when the page gets loaded in <code>Opera</code>.</p> <p>I don't want the change in the appearance.</p> <p>Before clicking in <code>Textarea</code> ,</p> <p><img src="https://i.stack.imgur.com/61yoR.png" alt="enter image description here"></p> <p>After clicking in <code>Textarea</code> ,</p> <p><img src="https://i.stack.imgur.com/AQZlk.png" alt="enter image description here"></p> <p>Also in <code>opera</code> , Textarea looks with scroll bar,</p> <p><img src="https://i.stack.imgur.com/3lUJx.png" alt="enter image description here"></p> <p>How to disable this scroll bar in <code>opera</code> ? Its will happens in opera when the page gets loaded.</p> <p>My <code>jsp</code> will be,</p> <pre><code>&lt;div id="messageArea"&gt; &lt;table border="0" width="95%"&gt; &lt;tr&gt; &lt;td id="msgvalue" style="width:91%;border-color: #6495ED;border-style: solid;border-width: 1px;"&gt; &lt;textarea id="message" onkeypress="javascript:message_onkeypress(event);" &gt;&lt;/textarea&gt;&lt;/td&gt; &lt;td style="width:2%;"&gt;&lt;/td&gt; &lt;td style="width:7%;"&gt;&lt;input type="submit" name="send" value="Send" id="sendButton" /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/div&gt; </code></pre> <p>My <code>CSS</code> will be ,</p> <pre><code>#messageArea { padding-left: 16px; height: 10%; width: 95%; background-color: white; } #message { width: 99.5%; height: 49px; border: none; overflow: auto; resize: none; } #sendButton { width: 100%; height: 60px; background-color: #5690dd; color: white; } </code></pre> <p>Good answers will be appreciated.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload