0

I am trying to make big popover when hovering a div, and the content of this popover is going to be another div. Is this possible using pseudo element?

Gui Oliveira
  • 155
  • 2
  • 9

2 Answers2

-1

the ::after pseudo element will accept text but what about If you want to put HTML tags so you need jquery or js to to that visit : Using :before and :after CSS selector to insert Html

7usien
  • 83
  • 7
-1

Not with pure CSS. The ::after pseudo-element is for simple text content and styling (MDN).

Mark
  • 521
  • 6
  • 15