Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS HTML & CSS Issues Re: HTML & CSS Issues

#88759
Bob
Member

You can add

-moz-user-select: none;
-webkit-user-select: none;
user-select: none;

to your img tag. So it would be like

img { position: absolute; bottom: 0; left 0; -moz-user-select: none; -webkit-user-select: none; user-select: none; }

I’ve never used that before though – so don’t sue me if I’m wrong. Glad to help you though :)