What the inline shit is this?



  • @ben_lubar said in What the inline shit is this?:

    You still haven't said what is broken. All you've done is mention some expected behavior.

    The button text is not on the same baseline as the first line of the signature. This instills a slight feeling of queasiness if you stare at it long enough.

    The fix is easy: get rid if sigs.



  • @gleemonk said in What the inline shit is this?:

    The button text is not on the same baseline as the first line of the signature.

    The signature and buttons aren't aligning by baseline because the buttons are in a float: right, so they're actually aligning by the top of the element, which would be at the same line as the top of the sig element except that has padding-top: 5px, which pushes it down; the buttons have margin-top: 10px, which doesn't push them down. So there's a 5px difference between the top lines of the two elements. If not for that, you probably wouldn't notice they're top-aligned unless the font size of one was significantly larger than the other.



  • .post-footer .pull-right a {
        display: inline-block;
    }
    

    Only messed around in firefox console but it forces alignment like @Lorne-Kates expects.


Log in to reply