(1)input標籤type為search,輸入內容時會出現清除內容icon,
解決方法:
input[type="search"]{-webkit-appearance: none;}
input::-webkit-search-cancel-button {display: none;}
(2)多行省略號(給出高度),也可以使用標籤內容(...)l來遮住字元text-overflow: ellipsis;
<em>display: -webkit-box;<br>-webkit-box-orient: vertical;<br>-webkit-line-clamp:2;//表示第二行出现省略号<br>overflow: hidden;<br><br>(3)单行省略号<br></em>
overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
以上是css筆記--input標籤介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!