I want to disable or transparent the selection color when I click the mouse to select all web page
I use CSS ::selection , like below css
*::selection
{
-webkit-appearance: none;
outline: none;
}
But when you go to the lowermost part of the page, and select to the top,
<p>
and <img>
cannot be selected, - this is correct, but to the right of all images "space" still appear in selection color!
How can I disable or make transparent all images side selection color ?
(I don't want selection background-color to white ,need transparent)