Bottom few pixels of text cut off

后端 未结 8 1769
暗喜
暗喜 2021-02-12 13:46

I really can\'t figure out what\'s going on in this case. On the multiline pieces of text, the bottom few pixels are cut off.

8条回答
  •  情深已故
    2021-02-12 14:23

    Check the size of the sliderwrap, the height attribute may be in conflict with the total text size, and since your overflow is hidden, according to your css property, that might be your issue.

    Perhaps fixing it like this:

    #sliderwrap
    {
        height:114;
    }
    

提交回复
热议问题