R
R
Reflections2021-12-29 13:13:20
css
Reflections, 2021-12-29 13:13:20

Safari IOS, how to style button and phone numbers?

Hello.

Style issue in Safari IOS browser.
There are several in forms.
There are two phone numbers that are intended to be divas:

<div class="phone"></div>
<div class="phone"></div>


Safari IOS makes the button color blue and the phone divs blue with an underline.

Tried -webkit-text-decoration-skip, -webkit-appearance - doesn't help. Didn't find extra. info.
I will be grateful for help.

Answer the question

In order to leave comments, you need to log in

3 answer(s)
T
Therapyx, 2015-09-02
@Therapyx

the same number a is added to the number a. And the unknown n is divisible by 1000. It must be denoted somewhere
Int a = 5;
int n = 5000;
a = a + (n / 1000);
You can also do this a += n / 1000;
/ is division. Like (sort of) and everywhere)

M
Maxim, 2015-09-02
@lbyte

A - variable;
N - variable;
(They are declared before they are used)
In expressions, whatever is to the right of the equal sign is always evaluated first.
Division has higher precedence than addition.
Divided by n / 1000
Added A to the quotient
A keeps the result.
Short version: a += n / 1000 same as a = a + (n / 1000)

G
Georgy Pelageikin, 2015-09-02
@ArXen42

I understand from some example taken. Everything is fine, it is assumed that both a and n are declared.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question