Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dynamically Modify CSS from GWT

Tags:

css

gwt

for example I have a css in test.css given below.

.test {

  top:100px;

 }

how can i increment top property from GWT ?

like image 625
msaif Avatar asked Dec 04 '25 00:12

msaif


1 Answers

e.g. you can retrieve the Style of the element and alter that. other type of widgets might have other functionalities

like image 180
Redlab Avatar answered Dec 05 '25 15:12

Redlab