View Single Post
Old 01-13-2025, 02:43 PM   #12
Falkor
Connoisseur
Falkor began at the beginning.
 
Posts: 90
Karma: 10
Join Date: Dec 2024
Device: Tolino Shine 5
Quote:
Originally Posted by JSWolf View Post
My mistake. Given it's a Tolino owned by Kobo, RMSDK is (IMHO) never going to be updated and it will never support letter spacing. The version of RMSDK used is old.

I don't know what the other Reader is on the Tolino, but if it's webkit based, it shoulsd support letter spacing.
I just tried the following:

Code:
.hellothere {
  display: none;
  }

@supports (letter-spacing:2em) {
.hellothere {
  display: block;
  
  }
  }
Code:
<p class="hellothere">Hi, I support letter-spacing.</p>
And guess what: letter-spacing is supported. It just doesn't do anything on the device.
Falkor is offline   Reply With Quote