Reputation: 31
I am working on an application than needs to create pages looking like this:
The problem I have is that, just like in the page linked above, the values are not selectable neither with iSafari nor with the desktop version of Safari.
I need to be able to select and copy the values (in the example page these are '2', '8' and '27').
I would be fine simply knowing why the above text is not selectable in the first place, as this would probably be enough to find a workaround solution.
Thanks everybody for the kind attention.
Upvotes: 1
Views: 513
Reputation: 31
In this case the problem is caused by the following option
-webkit-user-select:none;
Alternative options, for the same property, are auto
and text
.
Further documentation available on Safari CSS reference page
Upvotes: 2