Quote:
Originally Posted by JSWolf
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.