html - how to remove shadow-root (user-agent) -



html - how to remove shadow-root (user-agent) -

i wrote in html is,

<asp:textbox id="txtcomment" runat="server" onkeyup="loadvalues(this,250)" maxlength="250"></asp:textbox>

but chrome browser shows

<input name="birthdaywish1$txtcomment" type="text" maxlength="250" id="birthdaywish1_txtcomment" onkeyup="loadvalues(this,250)"> #shadow-root(user-agent) <div id="inner-editor"></div> </input>

i want remove #shadow-root(user-agent) because input field shows greenish color segments.

i found error comes external css class. have given greenish color image this case problem.

input[type=text],input[type=password],textarea{color:#626262;display:inline-block;background:#fff url(../images/forminput.gif) top left repeat-x;border-radius:2px;width:100%;border:1px solid #ccc;height:17px;margin:2px 0;padding:2px 1px;}

html css asp.net dom

Comments

Popular posts from this blog

Delphi change the assembly code of a running process -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -

C++ 11 "class" keyword -