css classes not applying on android

css classes not applying on android

lets say i create a div with 
  1. <div class="mynewclass"> test </div>
so the css looks like

  1. .mynewclass {
  2.                background:
  3.                  marging: 
  4.                   etc,
  5. }

when i open the page in a browser, it works,
on android (and on the emulator) its like there has been no css-class.


my strukture is: 

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta ...
  5.         <meta ...
  6. </
  7.         <title>myquestion</title>

  8. < jqm-stylesheets...
  9. <link rel="stylesheet" href="themes/v2.css" />

  10. <script ....  >

  11. </head>
  12. <body>

  13. <div data-role="page"
  14.                   <div data-role="content"
  15.                     <div class="mynewclass">







how to "name" the class inside the css so the android can find it?

please, please, i´m going nuts ;-)

// sry, for my english, i´m not a native speaker

// if i change the datarole to "c" and aply
  1. .ui-body-c mynewclass
it also doesnt work


yes, first the css from jqm than mine.