+ 1
Please, someone help me?
I'm trying adapter my code for to be responsive in the cellphone screen. But I can't... My code is here: https://code.sololearn.com/WrH0zd1gfc63/?ref=app * Sorry for my English(I'm a Brazilian)
4 ответов
+ 4
I think you have to use the passing instead of margin and use the percentage value instead of pixels. I think it is a good way to be the responsive
+ 4
1. A quick fix:
@media (max-width:400px){
:root{
transform:scale(0.25);
transform-origin:0 0;
}
}
https://code.sololearn.com/WZmi1Dw8w7m3/?ref=app
2. To learn yourself :
https://code.sololearn.com/W3gS00IGw160/?ref=app
+ 2
A A You can use @media attributes in CSS. This is best option to make responsive.
0
Thank you guys... I will try to apply what you advised 😀