0
How to decrease size of everything on webpage by 20% in html
I want the webpage to look like ..like when you decrease the webpage size on chrome to 80% .. in kind off fills my screen and looks good.. but I am not able to do it.. so can anyone help??
4 Respostas
0
You can have width 80%
0
AJ/AY I tried that didn't work
0
Can you share your code?
0
This is probably not a good idea, but:
body {
transform: scale(0.8, 0.8);
}