What's new

Top Border of the Buttons is not displayed Properly

ssandeep

New Member
Joined
Jan 5, 2016
Messages
2
Reaction score
0
Hello,

While browsing my asp.net application in iPhoneTop i realizing the top border of the all the Button is not displayed Properly. even all the buttons displayed with rounded corner where as in android buttons displayed as rectangle.

Can somebody help/suggest on this, what is the issue please see the attachment.

-Sandeep
 

Attachments

  • Button - Top Border is not displayed Properly.png
    Button - Top Border is not displayed Properly.png
    44.9 KB · Views: 467
I have a style-sheet like below
/* Button elements */
button.ui-btn,
.ui-controlgroup-controls button.ui-btn-icon-notext {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-appearance: none;
-moz-appearance: none;
width: 100%;
}
 
Top