Input Table - Rows - text not wrapping correctly while in phone vertical

  • NippersD
    Asked on October 27, 2017 at 6:33 PM

    any suggestions (CSS) to help with ensuring text is wrapping onto next line correctly?  For example, on my iPhone 6 in vertical mode (as well as on your Preview), text in the rows is being cut off mid-word and displayed at the start on the next line. 

  • Mike
    Replied on October 27, 2017 at 8:41 PM

    You may try adding the next CSS to the form:

    @media screen and (max-device-width:40em) {
    .form-matrix-row-headers {
    word-break: break-word;
    }
    }

    Input Table   Rows   text not wrapping correctly while in phone vertical Image 1 Screenshot 20

    If you need any further assistance, please let us know.

  • NippersD
    Replied on October 30, 2017 at 4:19 PM

    that worked.   thank you