Quote:
Originally Posted by Falkor
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. 
|
Given it didn't do anything means it's not supported. It has to work to be supported.