I have loaded this CSS:
#ue_email_new{
border: 1px solid #000000;
}
When the page loads, it displays correctly.
However, when I click on inspect element (using FF 17) and view the CSS, I notice something strange in the debugger:
element {
border: 1px solid rgb(221, 221, 221);
}
Suddenly, the border changes to this unexpected setting on the actual page.
Where is this coming from?
I have checked my CSS thoroughly but cannot locate these settings. What exactly is the
element
tag that is being referenced by the debugger?
The HTML code looks like this:
<div id="wr_ue_email_new">
<input autocomplete="off" class="radius_all" name="email" id="ue_email_new" type="text" maxlength="320" />
<p id="ue_email_lab" class="ue_lab_new">Email</p>
</div>