I want to know if there is a way to do it for my project I’m working on.
Yes, you can just use this in CSS:
body{
overflow:hidden;
}
3 Likes
Hello @codingperson51867872 !
Like what @cpluspluscoder coder said, this is it:
body{
overflow:hidden;
}
Quite a few things in CSS are literal which makes it easy to code without fully knowing, although Google is a nice tool to use also. For example:
font-family:Trebuchet MS;
Its the type (font family), and then the font name (Trebuchet MS).
I hope this helps =)
3 Likes
Can you even do specific sizes in CSS?
1 Like
Yes, you just do font-size:15px;
or whatever size you want.
2 Likes
Also, on top on what @cpluspluscoder coder said again, you can also say ‘small’, or ‘large’ instead on a pixel size.
1 Like