我有這段代碼將一個工具提示置於一個元素下面。它工作正常的大於或等於提示的寬度的元素:如何將工具提示置於比工具提示更窄的元素下方?
HTML:
<div class="my_class">Some Stuff<div class="tooltip_botom">My Very Long Tooltip Contents</div></div>
CSS:
.my_class {
position: relative;
width: 100%;
height: 100%;
}
.tooltip_bottom {
position: absolute
bottom: -25px
left: 0
right: 0
display: inline
text-align: center
}
可是我該怎麼辦,如果內容是窄於工具提示寬度?上面列出的CSS在這種情況下不起作用。我該如何解決它?
我要的是工具提示到div下方居中。 – 2014-11-03 13:48:33