参见英文答案 > Input with border for half height 5个
我有一个输入字段,底部只有一个边框,现在我需要在输入的左侧和右侧创建一个小线.这有点难以描述,所以我将使用一个例子:
input {
background-color: transparent;
height: 20px;
padding: 10px 10px 1px;
border: 0;
border-bottom: 1px solid red;
}
最佳答案
在输入上使用多个box-shadows可以让您具有此下划线效果:
原文链接:https://www.f2er.com/html/426626.htmlinput {
height:20px;
padding:0 5px;
border: 0;
Box-shadow: -9px 9px 0px -7px red,9px 9px 0px -7px red;
width:300px;
}
需要根据输入的高度调整sBox-shadow的spread radius and the X/Y offset,如本例中可以看到的输入更高:
input {
height:20px;
padding:10px 5px;
border: 0;
Box-shadow: -18px 18px 0px -17px red,18px 18px 0px -17px red;
width:300px;
}