fooltips
Tooltips with just CSS
Installation
npm
npm install --save fooltipsunpkg
https://unpkg.com/fooltipsCustomization
Defaults:
--multiline-max-width: 250px;
--tooltip-background-color: rgba(0, 0, 0, 0.8);
--tooltip-color: #fff;
--tooltip-padding: 5px 8px;
--tooltip-border-radius: 4px;
--tooltip-font-size: 0.7rem;
--tooltip-zIndex: 9000;
--tooltip-content: aria-label;
.tooltip--red {
--tooltip-background-color: red;
}
I have a custom tooltip
.tooltip--big {
--tooltip-background-color: #222;
--tooltip-padding: 8px 12px;
--tooltip-font-size: 1rem;
}
I have a big tooltip
.tooltip--href {
--tooltip-content: href;
}
I have a tooltip with a link