javascript - How to display an action list on hover using bootstrap? -
i have html page this , when hover volume button located on right, div box contains upload , delete function should displayed beside volume icon. expect when hover volume icon, upload, delete , volume icon should displayed in same line, picture below
, grey panel not overflowed out of box.
does have idea how set again stylesheet show situation ?
make .prompt-audio-control
display inline-block
when view on hover
, not inline
in order fit next each other:
.prompt-audio:hover .prompt-audio-control { display: inline-block; }
updated fiddle: https://jsfiddle.net/y2ee6fsc/2/
Comments
Post a Comment