Strange FireFox CSS Issue

An oddity I came across today in FireFox, is when I apply height to the input selector, it also defines and shows hidden elements.

firefox_form.png

Those white stripes are because of the following rule:

#paypal_form input {
margin-left: 200px;
display: block;
height: 15px;
margin-bottom: 10px;
}

There may be some other Cascading rules, but I couldn’t find it, and I’ve never seen it before.

Leave a Reply