You can use CSS3 to apply different effects on text boxes. You can apply
round corner and and shadow effects on text boxes to stylize your
forms.
Box Shadow Inset Effect
input.example1 {
background: white;
border: 1px solid #DDD;
border-radius: 5px;
box-shadow: 0 0 5px #DDD inset;
color: #666;
float: left;
padding: 5px 10px;
width: 165px;
outline: none;
}
Box Shadow Glow EffectSimple Border with little GlowText box with iconText box with image and inset shadow effect
I Love to hear from Readers, Say something about the article, give your feedbacks in comments. |
Comments
Post a Comment