码迷,mamicode.com
首页 > 其他好文 > 详细

input标签placeholder过长省略号显示

时间:2019-07-25 23:47:56      阅读:353      评论:0      收藏:0      [点我收藏+]

标签:web   author   auth   rom   white   psi   inpu   input   opera   

虽然input标签的placeholder可以用如下方式设置
input::-webkit-input-placeholder { /* Chrome/Opera/Safari /
color: red;
}
input::-moz-placeholder { /
 Firefox 19+ /
color: red;
}
input:-ms-input-placeholder { /
 IE 10+ /
color: red;
}
input:-moz-placeholder { /
 Firefox 18- */
color: red;
}
但placeholder过长用省略号的问题需要设置到input上
input {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}

 

input标签placeholder过长省略号显示

标签:web   author   auth   rom   white   psi   inpu   input   opera   

原文地址:https://www.cnblogs.com/anguoff/p/11247282.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!