IOS html5 css3 button click style?

Up vote 1 down vote favorite share g+ share fb share tw.

I write my application on HTML5/CSS3/JavaScript. For my button I create style (all work fine in browser), but when I start my application on iPad my active effect override standart iOS click effect. How I can override this standart effect?

My style : . Button { display: inline-block; width: 150px; height: 50px; background: #f78d1d; background: -webkit-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20)); background: -moz-linear-gradient(top, #faa51a, #f47a20); filter: progid:DXImageTransform.Microsoft. Gradient(startColorstr='#faa51a', endColorstr='#f47a20'); } .

Button:ACTIVE { background: #f47c20; background: -webkit-gradient(linear, left top, left bottom, from(#f88e11), to(#f06015) ); background: -moz-linear-gradient(top, #f88e11, #f06015); filter: progid:DXImageTransform.Microsoft. Gradient(startColorstr='#f88e11', endColorstr='#f06015' ); } My Button: html css ios html5 css3 link|improve this question asked Mar 15 at 15:19MaeSTRo72 0% accept rate.

I had the same problem use the button tag and it seems to override. Link.

The answer to your problem I believe is very simple. Add this following CSS code to your button or body tag (to affect the entire document). Body { -webkit-appearance: none; } This will remove default styles for buttons that iOS places onto certain UI elements.

Hope that helps.

The answer to your problem I believe is very simple.

I had the same problem use the button tag and it seems to override.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions