使输入从右侧凹入,从左侧凸出

时间:2015-01-04 14:09:17

标签: css input css-shapes

如何使用css实现对文本输入的影响?

input

1 个答案:

答案 0 :(得分:1)

你可以包裹input并使用pseudo元素使curved成为可以使用inset box-shadowinput的弯曲阴影您可以添加padding



* {
  box-sizing: border-box;
}
div {
  display: inline-block;
  position: relative;
  height: 40px;
}
div:after {
  content: '';
  width: 40px;
  height: 100%;
  left: 92%;
  top: 0;
  border-radius: 50%;
  background: white;
  position: absolute;
  box-shadow: inset 2px 0px 0px 0px rgb(184, 170, 170);
}
div input {
  width: 100%;
  height: 100%;
  border: 0;
  display: inline-block;
  border-radius: 30px 0px 0px 30px;
  background: #343434;
  padding: 10px;
  color: white;
  font-size: 20px;
  box-shadow: 2px 1px 3px 0px rgb(184, 170, 170);
}

<div>
  <input type="text" />
</div>
&#13;
&#13;
&#13;