DEV Community

Discussion on: How to style Draft.js editor

Collapse
 
iamrohitsawai profile image
Rohit Kiran Sawai

Thank you for explaining the Overflow-Y. I just wanna ask a thing. Now I have aaded Overflow-Y but it shows me scrollbar before adding any text which I dont' want. How can I make it auto display when complete textarea will fill?

Collapse
 
tumee profile image
Tuomo Kankaanpää

Hi! If you want to show the scrollbar only when needed, you should use the value "auto" for the overflow-y property. So overflow-y: auto should set it visible only when needed.

Collapse
 
iamrohitsawai profile image
Rohit Kiran Sawai

I did the same what you have said but then also I can see scrollbar. What would be the issue?

Thread Thread
 
tumee profile image
Tuomo Kankaanpää

That's weird, it should work straight out of the box just with the overflow-y: auto. I am afraid it is hard to tell the issue without any code example.

Collapse
 
lvdang profile image
lvdang

Tuoma,

One thing I did notice, might be a draftjs issue. If you go to the very bottom then click on 'Enter' it works fine then if you up arrow up the the previous line then hit 'Enter' notice the cursor doesn't go to the next line . Hope that makes sense.

Luan