次のようなテキストボックスを作成したい:
テキストを入力できる行です。cssでこれを行うことは可能ですか? またはブートストラップで?
はい、可能ですDEMO HERE
HTML
<input type="text" class="text-line" />
CSS
body {
background: #333333;
}
.text-line {
background-color: transparent;
color: #eeeeee;
outline: none;
outline-style: none;
border-top: none;
border-left: none;
border-right: none;
border-bottom: solid #eeeeee 1px;
padding: 3px 10px;
}
はい、可能です
HTML
<input type="text"/>
CSS
input[type="text"] {
border:none; /* Get rid of the browser's styling */
border-bottom:1px solid black; /* Add your own border */
}
画像を使用せず、下線を入力の幅に制限することもできますが、多数の CSS プロパティが必要になります。これを参照してください:http://jsfiddle.net/2jJvF/
私が使用したCSSはこれでした:
* {
background-color: black;
}
input[type=text] {
color: white;
border: none;
}
input[type=text]:focus {
outline: none;
}
.text-container {
border: 0px 1px 0px 0px;
border-bottom: white solid;
}
.text-input {
border-bottom: solid 1px black;
border-top: none;
border-left: none;
border-right: none;
}
input[type="text"]:focus{
outline: none;
}
私のjsfiddleをチェックしてください
http://jsfiddle.net/inked/kCXh5/
1番目と3番目の方法を個別に試しましたが、うまくいきませんでした。それらを一緒に試してみると、うまくいきました。もちろん上からのコピペですが、こんな感じです。
input[type="text"] {
border:none; /* Get rid of the browser's styling */
border-bottom:1px solid black; /* Add your own border */
}
.text-line {
background-color: transparent;
color: #eeeeee;
outline: none;
outline-style: none;
border-top: none;
border-left: none;
border-right: none;
border-bottom: solid #eeeeee 1px;
padding: 3px 10px;
}
</style>
</head>
<body>
<h2>Card</h2>
<div class="card">
<div class="container">
<h4><b>Question</b></h4>
<input type="text" class="text-line"/>
<p>Architect & Engineer</p>
</div>
</div>
</body>
テキストボックスを作成し、背景プロパティを水平線のある画像に設定できると思います。
<!DOCTYPE html>
<html>
<head>
<style>
.body1
{
background-image:url('gradient2.png');
background-repeat:repeat-y;
padding-left:20px;
}
</style>
</head>
<body>
<input type="text" class="body1" />
</body>
</html>