Using :before CSS pseudo element to add image to modal

后端 未结 4 1657
不思量自难忘°
不思量自难忘° 2020-12-12 23:11

I have a CSS class Modal which is absolutely positioned, z-indexed above it\'s parent, and nicely positioned with JQuery. I want to add a caret image (^) to th

4条回答
  •  醉话见心
    2020-12-12 23:58

    Content and before are both highly unreliable across browsers. I would suggest sticking with jQuery to accomplish this. I'm not sure what you're doing to figure out if this carrot needs to be added or not, but you should get the overall idea:

    $(".Modal").before("");
    

提交回复
热议问题