allright, so i got a div where a script ont he page will be posting texts by inputs inside an unsorted list.
Whats happening is that the div must only 300 pixels height, so i locked it by using this on the css:
now locked to keep the size of the div, and will only scroll up and down.so the div wont scroll to the sizes.
Whats happengi is that, when an input is submited with a text soo long that ti needs to scrool, whath appens is that it will not split the txt into several lines so it would only fit the current size of the div....
what could i do in this case so the div would keep its size, and then the text placed in it wont scroll to the sides but would split into several lines to fit the div. .... ?
Whats happening is that the div must only 300 pixels height, so i locked it by using this on the css:
Code:
overflow-x:hidden; overflow-y:scroll;
Whats happengi is that, when an input is submited with a text soo long that ti needs to scrool, whath appens is that it will not split the txt into several lines so it would only fit the current size of the div....
what could i do in this case so the div would keep its size, and then the text placed in it wont scroll to the sides but would split into several lines to fit the div. .... ?
Comment