Answer the question
In order to leave comments, you need to log in
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
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.
I use this method for this: The layout is based on two blocks:
HTML
<body>
<div id="Wrapper">
Тут остальной сайт
<div>
<footer>
Тут футер
</footer>
</body>
#Wrapper {
display:inline-block;
width: 100%;
height: 100%;
min-height: calc(100vh - 100px);
}
footer {
height: 100px;
}
https://jsfiddle.net/9aqbo85e/1/
there is another option:
https://jsfiddle.net/g3dacezy/
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>
body {
display: flex;
flex-direction: column;
min-height: 100vh;
}
.footer {
margin-top: auto;
}
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 questionAsk a Question
731 491 924 answers to any question