html - Tizen - how to change button font-size - fixed -


how can change button font-size? when tried change css, changes didn't work , buttons lost data-style: round attribute. have html app , button open page, here it:

<p><a href="two.html" data-role="button"                  data-style="round" id="btn" style="border: 5;                   background: #ffffff">                 test</a></p> 

css:

   #btn {         width: 250px;  height: 40px;         margin: 0 auto;         /*data-style: round;*/         border: #000000;         border-style: solid;         border-width: 5px;         font-family:"times new roman", times, serif;         font-size: 8pt;          } 

solution founded in answer below

why don't try thisin css

border-radius:8px ; -moz-border-radius:8x; -webtrik-border-radius:8px 

Comments

Popular posts from this blog

c# - Unity IoC Lifetime per HttpRequest for UserStore -

Change the color of an oval at click in Java AWT -

I am trying to solve the error message 'incompatible ranks 0 and 1 in assignment' in a fortran 95 program. -