Change the look of a button on focus

Hi everyone,

I am trying to give a button a different look when the user is navigating by pressing a tab button.
If there is a build in feature or an easy way to do it? This is Accessibility requirement.
Thank you!

we fond the solution by adding focus pseudo class in html header, that can be accessed through Edit Head HTML in the document panel something like this
.yourbuttonclass:focus { border: 2px red solid }

1 Like