I am trying to get css used for hover tooltip by using inspect element in google chrome developer tool.Tooltip appears when I hover on edit pencil Icon. as soon as I move the mouse to inspect the tooltip it disappears. so I am unable to inspect that tooltip.
<span>
<span class="fa fa-pencil fa-1x" title="Edit" data-toggle="tooltip"></span>
</span>
It's not a custom Javascript or CSS tooltip plugin. It's a default tooltip by the OS system or the browser, using title
attribute to display it, so you can't get or set it style.
By the way, you can use @Anie solution to use your own tooltip. Now you can easily set a custom style for your tooltip.