Perfect Tooltips With CSS Clipping and Masking

In this post Louis Hoebregts creates nice tooltips. No, not a typical triangle injected at the bottom but a nice curved one, also letting the image underneath peek through. For it he uses mask-image consisting of two parts: one rectangle overlaying the top part of the image + one SVG arrow overlaying the bottom part. …


This content originally appeared on Bram.us and was authored by Bramus!

In this post Louis Hoebregts creates nice tooltips. No, not a typical triangle injected at the bottom but a nice curved one, also letting the image underneath peek through.

For it he uses mask-image consisting of two parts: one rectangle overlaying the top part of the image + one SVG arrow overlaying the bottom part.

.tooltip {
  mask-image:
    linear-gradient(#fff, #fff), /* Rectangle */
    url('data:image/svg+xml;utf8,'); /* Bottom  arrow */
  mask-position:
    0 0, /* Rectangle */
    50% 100%; /* Bottom arrow */
  mask-size:
    100% calc(100% - 18px), /* Rectangle */
    38px 18px; /* Bottom arrow */
  mask-repeat: no-repeat;
}

See the Pen
Idea #3 – Responsive complex clipping in CSS
by Louis Hoebregts (@Mamboleoo)
on CodePen.

Cranking it up a notch he even creates some nice looking message bubbles.

Perfect Tooltips With CSS Clipping and Masking →


This content originally appeared on Bram.us and was authored by Bramus!


Print Share Comment Cite Upload Translate Updates
APA

Bramus! | Sciencx (2021-06-30T15:53:06+00:00) Perfect Tooltips With CSS Clipping and Masking. Retrieved from https://www.scien.cx/2021/06/30/perfect-tooltips-with-css-clipping-and-masking-2/

MLA
" » Perfect Tooltips With CSS Clipping and Masking." Bramus! | Sciencx - Wednesday June 30, 2021, https://www.scien.cx/2021/06/30/perfect-tooltips-with-css-clipping-and-masking-2/
HARVARD
Bramus! | Sciencx Wednesday June 30, 2021 » Perfect Tooltips With CSS Clipping and Masking., viewed ,<https://www.scien.cx/2021/06/30/perfect-tooltips-with-css-clipping-and-masking-2/>
VANCOUVER
Bramus! | Sciencx - » Perfect Tooltips With CSS Clipping and Masking. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/06/30/perfect-tooltips-with-css-clipping-and-masking-2/
CHICAGO
" » Perfect Tooltips With CSS Clipping and Masking." Bramus! | Sciencx - Accessed . https://www.scien.cx/2021/06/30/perfect-tooltips-with-css-clipping-and-masking-2/
IEEE
" » Perfect Tooltips With CSS Clipping and Masking." Bramus! | Sciencx [Online]. Available: https://www.scien.cx/2021/06/30/perfect-tooltips-with-css-clipping-and-masking-2/. [Accessed: ]
rf:citation
» Perfect Tooltips With CSS Clipping and Masking | Bramus! | Sciencx | https://www.scien.cx/2021/06/30/perfect-tooltips-with-css-clipping-and-masking-2/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.