【发布时间】:2017-06-03 00:15:08
【问题描述】:
文本框border-style 被初始化为none。但是onfocus边框出现在textBox上。那么,如何避免出现边框呢?
input[type="text"]{
border-style : none;
box-shadow : 0 0 0 0;
height : 3em;
width : 20em;
}
::-webkit-input-placeholder {
font-size : 16pt;
}
::-moz-placeholder {
font-size : 16pt;
}
<label for='text'>Enter some text</label><br>
<input type="text" placeholder="Enter text here">
【问题讨论】:
标签: css