HOW DO I CODE TEXTBOXES THAT DONT SHOW THE UGLY SCROLL PART PLEASE PLEASE PLEASE PLEASE. ALSO HOW DO I CHANGE MY MOOD TEXT. Guys I feel dumb I need so much help😭

PLEASE HELP ME
0 Kudos
HOW DO I CODE TEXTBOXES THAT DONT SHOW THE UGLY SCROLL PART PLEASE PLEASE PLEASE PLEASE. ALSO HOW DO I CHANGE MY MOOD TEXT. Guys I feel dumb I need so much help😭
0 Kudos
Comments
Displaying 2 of 2 comments ( View all | Add Comment )
boêmio
i think the only way to do that is just making the scrollbar have like a 1 pixel width
but idk i'm a pretty amateur CSS enjoyer there must be a better way for that.
you use this:
*::-webkit-scrollbar {
width: 0px;
}
(with the style tags of course)
by boêmio; ; Report
arghh i forgot about the display: none property my bad.
also you could customize the scrollbar to make it fit your profile theme more
by boêmio; ; Report
it not work but tysm
by ☆Tomb_for_Two☆; ; Report
maciel
usually elements scroll because you defined a height for them! in order to remove the scrolling, you could remove any "height" properties from any element
and because you defined a height, anything that goes beyond that maximum height causes overflow. which just makes the element to scroll!
by maciel; ; Report