样式输入文本CSS

前端之家收集整理的这篇文章主要介绍了样式输入文本CSS前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试创建如下图像的输入文本:

首先,我使用CSS3this小提琴一样的帮助.因为旧浏览器的问题我达成了不使用CSS3.
现在我编码如下:

input[type=text]
{
    color: #979797;
    height: 28px;
    padding-left: 10px;
    text-decoration: none;
        background-image: url('Pictures/Input-BG.png');
    background-repeat: repeat-x;

}
   <input id="txtScrictAddress" value="Your Adress (required)" type="text" />

Input-BG.png是这个图像:

结果是here.

>我是否正确切割输入图像?
>输入有一个左边框颜色,如何设置css中的输入样式,如图像?

解决方法

您只需将边框半径和边框设置为无.并编辑你的图像,所以黑暗的东西也在左侧.
input[type=text]
{
    color: #979797;
    height: 28px;
    padding-left: 10px;
    text-decoration: none;
    background-image: url('http://i.stack.imgur.com/pbpVI.png');
    background-repeat: repeat-x;
    border-radius: 5px; /*up to date browsers support this,but you can add prefixes if you want*/

    border: 0;
}

http://jsfiddle.net/TGzng/8/

原文链接:https://www.f2er.com/css/215323.html

猜你在找的CSS相关文章