CSS中的类似ICS的输入字段[封闭]

前端之家收集整理的这篇文章主要介绍了CSS中的类似ICS的输入字段[封闭]前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在 HTML / CSS中创建一个输入字段,如 Android Ice Cream Sandwich,而不使用图像.
我被困在制作这些小边框(下图),如果有人可以帮助,这将是巨大的.

解决方法

编辑

我想包括owencm的评论,让人们绊倒这个问题,因为我发现它很优雅:

CSS

input.holo[type='text'] {
    /* You can set width to whatever you like */
    width: 200px;
    font-family: "Roboto","Droid Sans",sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 8px 8px 6px 8px;
    position: relative;
    display: block;
    outline: none;
    border: none;
    background: bottom left linear-gradient(#a9a9a9,#a9a9a9) no-repeat,bottom center linear-gradient(#a9a9a9,#a9a9a9) repeat-x,bottom right linear-gradient(#a9a9a9,#a9a9a9) no-repeat;
    background-size: 1px 6px,1px 1px,1px 6px;
}
input.holo[type='text']:hover,input.holo[type='text']:focus {
    background: bottom left linear-gradient(#0099cc,#0099cc) no-repeat,bottom center linear-gradient(#0099cc,#0099cc) repeat-x,bottom right linear-gradient(#0099cc,#0099cc) no-repeat;
    background-size: 1px 6px,1px 6px; 
}

HTML

<input type='text' class='holo'/>

的jsfiddle
http://jsfiddle.net/QKm37/

原始解决方

<span style="
  border-bottom: solid 1px cyan;
  border-left: solid 1px cyan;
  margin: 20px;
  border-right: solid 1px cyan;
  overflow: visible;
  max-height: 0.2em;
  display: inline-block;
  padding: 2px;
">
<input type="text" style="
  outline: none;
  border: none;
  background: transparent;
  display: inline-block;
  position: relative;
  bottom: 0.8em;
">
</span>
原文链接:https://www.f2er.com/css/216996.html

猜你在找的CSS相关文章