0

I have .aspx file (i dont have the .aspx file code), I'm trying to change the direction of .html page via .css file.
My problem is that the .css file is dynamic loaded from .axd file.
How can i change .css file at this case?
Thanks.

CSharpBeginner
  • 601
  • 2
  • 7
  • 22

1 Answers1

0

Use javascript. like

document.getElementById('id').style.property = 'value';
document.getElementById('id').setAttribute("dir", "value");
It's a trap
  • 1,333
  • 17
  • 39