In a GWT web application, I want to give the opportunity to my users to decrease or increase font size in the current page.
Is it possible, in GWT, to do this, if the user click on + button:
body { font-size: 150%; }
And to do this, if the user click on - button:
body { font-size: 50%; }
Thanks!