This question already has answers here:
Input with border for half height

(5个答案)


5年前关闭。




我有一个输入字段,底部只有一个边框,现在我需要在输入的左侧和右侧创建一条小线。很难描述,因此我将使用一个示例:

input {
  background-color: transparent;
  height: 20px;
  padding: 10px 10px 1px;

  border: 0;
  border-bottom: 1px solid red;
}
<input type="text" placeholder="Example">


Fiddle

这就是我所拥有的:
html - 碗式下划线或边框输入-LMLPHP

这就是我需要的样子:
html - 碗式下划线或边框输入-LMLPHP

最佳答案

在输入上使用多个box-shadows可以使您获得以下强调效果:

input {
  height:20px;
  padding:0 5px;
  border: 0;
  box-shadow: -9px 9px 0px -7px red, 9px 9px 0px -7px red;
  width:300px;
}
<input placeholder="Example" type="text" />


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;
}
<input placeholder="Example" type="text" />


浏览器对box-shadows is IE9+的支持。

关于html - 碗式下划线或边框输入,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34962793/

10-17 02:53