Skip to content

Instantly share code, notes, and snippets.

@marifrahman
Created June 18, 2013 02:32
Show Gist options
  • Save marifrahman/5802239 to your computer and use it in GitHub Desktop.
Save marifrahman/5802239 to your computer and use it in GitHub Desktop.
TextBox Styling with CSS and background image
.txtBox
{
background: url(images/txtbox.png) no-repeat center;
border-style: none;
width: 207px;
height: 30px;
line-height: 30px;
font-family: Calibri, Verdana, Arial, Helvetica, Sans-Serif;
font-size: 11pt;
font-weight: bold;
padding-left: 5px;
vertical-align:baseline;
border-radius:5px;
-moz-border-radius:5px;
-moz-box-shadow: 1px 1px 1px #ccc;
-webkit-box-shadow: 1px 1px 1px 1px #ccc;
box-shadow: 1px 2px 2px 2px #ccc;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment