简体   繁体   中英

Textbox word wrap not working with CSS (word-wrap: break-word)

My Textbox value is more than 20 words.

 .customized { display: block !important; white-space: normal !important; word-wrap: break-word !important; word-break: break-all; width: 100px !important ; } 
 <input type="text" class="form-control customized" value="@item.value"/> 

Text-wrap is not being applied to my textbox, tried in all major browsers, did I miss something?

It's not a textbox. You are using input type="text" instead of "textarea"

据我所知,自动换行不适用于使用html或css的输入文本框...使用textarea代替

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM