1

如何结束一个段落?我想使用工具提示来显示一些东西。但是,如果您查看第一个单元格,则某些内容超出了工具提示的边界。

http://jsfiddle.net/zhshqzyc/4hN2M/21/

4

3 回答 3

2

将您的更改line-height为 not 125px

于 2012-07-26T18:52:09.110 回答
1

http://jsfiddle.net/6MCFR/1/

问题是您正在使用line-height使文本居中。如果您摆脱这方面并允许工具提示的高度是有机的,那么无论有多少行文本,工具提示都会扩展以适应。

于 2012-07-26T18:55:07.440 回答
0
#tooltip { 
    position:absolute;
    background: #CCC630;
    color: #AACBA;
    text-align: center;
    border-radius: 14px;
    border: 2px solid red;
    margin-top:30px;

    }

Make this change. I basically removed height and width and let it adjust accordingly. Hope this helps

于 2012-07-26T18:58:48.863 回答