While inspecting an element in FF, it displays a width of 225px.
However, the applied CSS sets the width to 207px for this element.
The discrepancy may be due to Bootstrap and varying resolutions.
Is there a tool available to identify change sources?
I'm looking for a tool that can alert me when specific properties are altered.
Thank you in advance for any assistance
These details are extracted from FF Inspector in two different states:
Element is input[type=text]
<input aria-invalid="true" class="invalid" name="jform[university]" id="jform_university" value="" required="" aria-required="true" type="text">
State 1: Width = 225px
*::-moz-selection {
background: #F9924F none repeat scroll 0% 0%;
color: #FFF;
}
element {
}
select, textarea, input[type="text"], ...
...... continued ...........
html {
font-size: 100%;
}
State 2: Width = 207px
*::-moz-selection {
background: #F9924F none repeat scroll 0% 0%;
color: #FFF;
}
element {
}
select, textarea, input[type="text"], ...
...... continued ...........
html {
font-size: 100%;