I have the following html:
<div class='contact section-two'>
<input class='info' type='email' name='email' placeholder='email'
value="">
<span class='alerts hidden'>Please enter your email</span>
</div>
but when I check developer tools I'm getting:
<div class='contact section-two'>
<input class='info' type='email' name='email' placeholder='email' value="">
#shadow-root (user-agent)
<div pseudo="-internal-input-suggested" id="placeholder"
style='display:block!important; user-select:none!important;">
abc@gmail.com</div>
<div></div>
</input>
<span class='alerts hidden'>Please enter your email</span>
</div>
How do I prevent the shadow-root element? Also, why the heck is this
shadow element being added in the first place?
when I run the html on localhost it works fine. When I run it live on bluehost I get the shadowhost problem