我想打一个自定义的CSS类工具提示,将包长度大于25-30.Usually多串这么长的文本不适合进入tootltip文本区域。
而且反正是有做到这一点使用工具提示(ui.bootstrap.tooltip) ? 像使用自定义的CSS类来获得所需的输出。
这是简单的CSS工具提示- Plunker DEMO
下面是相同的代码片段:
.tooltip { position: relative; display: inline-block; border-bottom: 1px dotted black; } .tooltip .tooltiptext { max-width:100px; padding:15px; min-height:30px; background:#fff; visibility: hidden; border: 1px solid black; color: #000; text-align: center; border-radius: 6px; /* Position the tooltip */ position: absolute; z-index: 1; } .tooltip:hover .tooltiptext { visibility: visible; }
<body style="text-align:center;"> <p>Move the mouse over the text below:</p> <div class="tooltip">Hover over me 1 <span class="tooltiptext">Tooltip text</span> </div> <div class="tooltip">Hover over me 2 <span class="tooltiptext">Array [1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,11,1,1,1,11,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1]</span> </div> </body>