如何结束一个段落?我想使用工具提示来显示一些东西。但是,如果您查看第一个单元格,则某些内容超出了工具提示的边界。
user1108948
问问题
81 次
3 回答
2
将您的更改line-height
为 not 125px
。
于 2012-07-26T18:52:09.110 回答
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 回答