How to Add CSS to JS generated HTML

https://editify.studio/order/

This is the link to the page I am referring to. I would like to add the below css targeting a div element

.jDBLlg .
{
padding: 50px!important;
background-color: rgb(255 255 255 / 10%)!important;
backdrop-filter: blur(12px) saturate(200%)!important;
-webkit-backdrop-filter: blur(12px) saturate(200%)!important;
border-radius: 6px!important;
border: 1px solid rgba(255, 255, 255, 0.125)!important;
}

The thing is the class I am targetting “jDBLlg” is beign dynamically created by JS I am assuming. The HTML source doesnt have that html element as is. When I enter this CSS code into Inspect Tool in my browser it works, as that element is present, but when I add that snippet to my source file it doesnt work.

Please guide on how to add those CSS lines to that element. Thanks

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.