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

PHPMotion implementation - URL based videos (Hosted on separate location) -

javascript - Using Windows Media Player as video fallback for video tag -

c# - Unity IoC Lifetime per HttpRequest for UserStore -