I need to create an input text box with a bottom border and the side borders should span half the height of the input on left and right.
Is there an easy way to design this in CSS?
Image is show below:
I need to create an input text box with a bottom border and the side borders should span half the height of the input on left and right.
Is there an easy way to design this in CSS?
Image is show below:
Maybe this could be an elegant solution.
If you use background then you can specify really nicely where what goes and it improves readability a bit.
input[type="text"] {
padding: 10px;
background: linear-gradient(#000, #000), linear-gradient(#000, #000), linear-gradient(#000, #000);
background-size: 1px 20%, 100% 1px, 1px 20%;
background-position: bottom left, bottom center, bottom right;
background-repeat: no-repeat;
border: none;
color: #999;
}
<input type="text" />
With 2 box-shadows, you can achieve the bottom border and small borders on both sides. Here is an example:
input[type=text] {
width:300px; height:17px;
border: 0; outline:none;
padding:0;
box-shadow: -5px 5px 0px -4px #000, 5px 5px 0px -4px #000;
text-align:center;
}
<input placeholder="Email" type="text" value=""/>
The spread radius and the X/Y offset of the box-shadows need to be tweaked according to the height of the input and the desired height of left/right borders. As you can see in this example with a different height on the input:
input {
width:300px; height:40px;
padding:0;
border: 0; outline:none;
box-shadow: -18px 18px 0px -17px #000, 18px 18px 0px -17px #000;
text-align:center;
}
<input placeholder="Email" type="text" />
Browser support for box-shadows is IE9+.
I would go for a slightly different approach to web-tiki's answer, and use a wrapper div and a pseudo element, as this would not require a fixed height input (but would require this extra element):
input {
border: none;
}
div {
display: inline-block;
position: relative;
margin-bottom: 30px;
}
div:before {
content: "";
position: absolute;
bottom: 0;
left: -2px;
height: 50%;
width: 100%;
border: 2px solid black;
border-top: none;
}
textarea {
display: block;
height: 100px;
/*border:none*/
/*This was commented to show where text area is*/
}
<div>
<input type="text" placeholder="Please Enter your PIN" />
</div>
<br/>
<div>
<textarea placeholder="Please Enter your bank details and mother's maiden name;)"></textarea>
</div>
A linear-gradient
based answer already exists in this thread but it is a bit complex and makes use of multiple linear gradients to achieve the border but it can be done with just one linear-gradient
.
Using border-bottom
on the element avoids the need for one of those linear gradients. Using a linear gradient which is colored for 2px (2 x required border width), repeats in the X-axis and has a negative offset for background-position
in X-axis can produce border on left and right using only one gradient instead of two. The negative offset is equal to border's width (1px). It means that 1px of the gradient is visible on left side and since the gradient repeats in X-axis (and its size is only 100%), the 1px border on the right side is produced by the second tile of the gradient.
A few advantages of this approach are:
input
elements are self-closing and so cannot have pseudo-elements, this implies that no extra wrapper elements are required.input
element's dimensions change.One drawback is that linear-gradient
background images are supported only from IE10+.
input[type="text"] {
padding: 2px;
background-image: linear-gradient(to right, black 2px, transparent 2px);
background-repeat: repeat-x;
background-size: 100% 50%;
background-position: -1px bottom;
border: none;
border-bottom: 1px solid black;
color: #999;
text-align: center;
}
input[type="text"].padding {
padding: 4px 10px;
}
.narrow {
width: 100px;
}
.wide {
width: 250px;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
<input type="text" placeholder="Name" />
<input type="text" placeholder="Address" class="wide" />
<input type="text" placeholder="City" class="narrow" />
<input type="text" placeholder="Email" class="padding" />
You can use pseudo elements :
input {
position: relative;
width: 200px;
height: 18px;
border: none;
outline: none;
}
::-webkit-input-placeholder {
text-align: center;
text-transform: uppercase;
}
:-moz-placeholder {
/* Firefox 18- */
text-align: center;
text-transform: uppercase;
}
::-moz-placeholder {
/* Firefox 19+ */
text-align: center;
text-transform: uppercase;
}
:-ms-input-placeholder {
text-align: center;
text-transform: uppercase;
}
div {
position: relative;
}
div::before {
content: '';
display: block;
position: absolute;
left: -1px;
bottom: -1px;
width: 204px;
height: 9px;
background-color: red;
}
<div>
<input type="text" placeholder="email" />
</div>