Usually, an app/website design will place main CTAs at a place that can be reached easily on a smartphone using the thumb. Usually on the bottom right, however, this could be problematic for left-handed people.


It would be nice to have the possiblity to adapt websites/apps depending on left/right handed user preference @media prefers-hand: right/left/no-preference (default), which would allow to easily customize interfaces.
.mySuperCTA {
position: fixed;
right: 0;
bottom: 0;
}
@media prefers-hand: right {
.mySuperCTA {
right: auto;
left: 0;
}
}
Is this information actually collected by mobile devices? From my experience, this has been a per-app setting.
Such a feature aligns well with the goals of WAI Personalization.
Most helpful comment
Is this information actually collected by mobile devices? From my experience, this has been a per-app setting.