Issue with negative margin value in Firefox

css, firefox, margin

Solution

The solution simply :

.search-bar {
    height: 98px;
    position: relative;
    top: -10px;
}

I Replaced `margin-top` with `top` with the same value, and I decreased `height` with old `margin-top` value, and worked like a charm.

Problem

I have an issue with a negative margin in Firefox. My negative margin works in Chrome but doesn't in Firefox. ``` .search-bar { height: 108px; position: relative; margin-top: -10px; } ```

Original source