默认是有边框(border)和背景色属性的。可以在CSS中加入border:none;(或者在html中加入style:"border:none")可以去掉边框。input标签在 鼠标 点击时,会有黄色的边框。如果不需要,可以加input{outline:medium;}属性去掉。
【border:none;】当border为“none”时对IE6/7无效边框依然存在 【border:0;】当border为“0”时,所有浏览器都一致把边框隐藏 【border:0;】把border设为“0”像素虽然在页面上看不见,但按border默认值理解,浏览器依然对border-width/border-color进行了渲染,即已经占用了内存值。 【border:none;】把border设...
input { bordercolor: lineargradient(red, yellow); }将把输入框的边框颜色设置为从红色到黄色的渐变色。
DOCTYPEhtml><html><head><style>input[type=text]{width:100%;padding:12px20px;margin:8px0;box-sizing: border-box;border:3pxsolid#ccc;-webkit-transition:0.5s;transition:0.5s;outline: none;}input[type=text]:focus{border:3pxsolid#555;}</style></head><body><p>在本例中,我们使用了:focus...
input{ outline-style: none ; border: 1px solid #ccc; border-radius: 3px; } 1. 2. 3. 4. 5. 浏览器展示如下: 那么能不能调整input的大小呢? 设置input的大小 设置高度,如下: padding: 7px 0px; 设置输入框高度,也可以用height,但是用height的话,输入框的光标会置于顶部,还要...
textarea { border-color: #eee; border-width: 1px; } label, textarea, input { width: 100%; display: block; } input { border-style: solid; border-width: 1px; } CommentsDateTimeLongitudeLatitude It's worth noting that the inputs extend almost to the edge of the text area, but not en...
<title>css实现input文本框的双边框美化</title> <style type="text/css"> .input_div{width:250px; height:22px; border-style:solid; border-width:1px 0 1px 1px; border-color:#b4b4b4 #eeeeee #d8d8d8 #bbbbbb;} .input_div input{display:block; width:248px; *width:246px; height:18px;...
<input type="text" id="oText" style="border:5px dotted red;color:red" onfocus="borderColor(this);" onblur="clearTimeout(oTime);"> 7、输入字时输入框边框闪烁(边框为虚线): <style> #oText{border:1px dotted #ff0000;ryo:expression(onfocus=function light (){with(document.all.oText){sty...
<input type="text" placeholder="输入框默认内容"> 显示效果如下: 设置输入框点击发光效果 input:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1pxrgba(0,0,0,.075),0 0 8pxrgba(102,175,233,.6);box-shadow:inset 0 1px 1pxrgba(0,0,0,.075),0 0 8pxrgba(102,175...
<input type="text" id="oText" style="border:5px dotted red;color:red" onfocus="borderColor(this);" onblur="clearTimeout(oTime);"> 7、输入字时输入框边框闪烁(边框为虚线): <style> #oText{border:1px dotted #ff0000;ryo:expression(onfocus=function light (){with(document.all.oText){sty...