M
M
Miffer2015-08-16 19:04:08
css
Miffer, 2015-08-16 19:04:08

Do Yota SIM cards work in "foreign" mobile routers?

The question is: do you need to buy Yota equipment for Yota SIM cards, or is an unlocked router of any operator suitable?
And, if you can use any equipment, is it possible to use the tariff "for tablets" in conjunction with "mobile router + tablet" or in this case, you need to take the tariff "for a computer"?

Answer the question

In order to leave comments, you need to log in

5 answer(s)
R
Rustam Bainazarov, 2019-02-12
@ma4t

This link has my answer:
How to push a footer to the bottom of the page and still keep the scroll event alive?
PS When content is removed, it is removed from the DOM, so it cannot take up space. Either your content is not removed, or you used some strange JS solutions to press the footer.

A
Alexander Ablizin, 2019-02-12
@mcmraak

I use this method for this: The layout is based on two blocks:
HTML

<body>
    <div id="Wrapper">
        Тут остальной сайт
    <div>
    <footer>
        Тут футер
    </footer>
</body>

css
#Wrapper {
    display:inline-block;
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 100px);
}
footer {
    height: 100px;
}

D
Dmitry Gormash, 2019-02-12
@kanonir1886

https://jsfiddle.net/9aqbo85e/1/
there is another option:
https://jsfiddle.net/g3dacezy/

L
Leonid Shishkin, 2019-02-12
@leonidshishkin

You can use flexbox and give the footer margin-top:auto. Then the footer will always be at the very bottom.
In order for the body to be no less than the height of the screen, we write min-height: 100vh for it.
HTML

<body>
    <div id="Wrapper">
        Тут остальной сайт
    <div>
    <footer>
        Тут футер
    </footer>
</body>

css
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.footer {
  margin-top: auto;
}

A
akimdi, 2015-11-09
@Miffer

yes you can. I did it myself, but first you need to unlock (untie) the modem from another operator.
for example, you have a modem from mts, and you need to insert a SIM card into it, you first unlock it, and then reflash it to fit your needs.
I think google is full of this information.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question