Text leaves input field in columns

I have a problem when I fill in the html input field like: enter image description here

If I add one more character, it drops out like:

enter image description here

This is the css:

form {
    -webkit-column-count: 3; /* Chrome, Safari, Opera */
    -moz-column-count: 3; /* Firefox */
    column-count: 3;
}

      

Here is the fiddle

I've only tested this with chrome.


Update

This one does not perform in safari


Update 2

This one doesn't work in firefox


Here is the bug report

+3


source to share


1 answer


Not for me either. Chrome version 43.0.2357.124m on Windows 7



0


source







All Articles