Plee
September 6, 2022, 6:52am
1
Hi there!
I have an issue with the button whith IOS - It basically ignores the style, border-radius, and padding. I suspect my code is wrong but I can’t figure out how to fix it.
input[type=submit] {
background-color: var(–indigo-700);
border: 1px solid var(–indigo-900);
color: var(–white);
font-weight: var(–fw-500);
text-transform: uppercase;
font-size: 1.1rem;
padding: 1.3rem;
border-radius: 4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
cursor: pointer;
}
Here is the button style
I am not an iOS user and trying to help.
This post seems to be similar to yours
html, ios, iphone, css
Have you tried that solution?
Cheers
I think his issue might the syntax. Esp this part.
input[type=submit] {
That’s a good catch, I did not see that.
Not sure, we have to wait for the original poster.
Plee
September 6, 2022, 9:25am
7
SittingTurtleDuck:
input[type=submit]
Nope! Have a look at codepen
Have you tried the solution given in stackexchange?
Also, we couldnt see it not working as most of us don’t have iOS. So both code and screenshot might be required to troubleshoot this problem
Plee
September 6, 2022, 12:43pm
10
Ir works - this is the snippet for IOS
input[type=“text”],
input[type=“submit”],
.input-checkbox {
-webkit-appearance: none;
border-radius: 4;
}
system
Closed
March 8, 2023, 12:44am
11
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.