java gwt apply css style for IFrameElement -
i have an
iframeelement fie; for need apply css style:
p{ font-family: arial,sans-serif; color: #666666; font-size: 9px; text-align: left; line-height: 1px; font-weight: bolder; } but find way style , not set it
style s = fie.getcontentdocument().getbody().getstyle(); how can apply css iframeelement?
try this:
fie.getcontentdocument().getbody().setid("myframe"); and in css file:
p, .myframe p { font-family: arial,sans-serif; color: #666666; font-size: 9px; text-align: left; line-height: 1px; font-weight: bolder; } java css gwt
No comments:
Post a Comment