I have a div, and I want to change the selection style.
It works fine like this:
<div>Text text</div>
<style>
div::selection {
background: #FFF;
color: #000;
}
</style>
The problem is that I want to send it in the email, so it has to be inline
code.
(<div style=""></div>
)
Is there any way to do that?