回答:
ボーダーレス入力フィールドの周囲にボーダーがあるスパンを使用して、固定接頭辞または接尾辞を持つ入力フィールドをシミュレートすることを検討してください。基本的なキックオフの例を次に示します。
.currencyinput {
border: 1px inset #ccc;
}
.currencyinput input {
border: 0;
}
<span class="currencyinput">$<input type="text" name="currency"></span>
親.input-icon
divを使用します。オプションで追加し.input-icon-right
ます。
<div class="input-icon">
<input type="text">
<i>$</i>
</div>
<div class="input-icon input-icon-right">
<input type="text">
<i>€</i>
</div>
アイコンをtransform
およびtop
に垂直に配置し、クリックが入力にフォーカスpointer-events
するnone
ようにを設定します。padding
およびwidth
必要に応じて調整します。
.input-icon {
position: relative;
}
.input-icon > i {
position: absolute;
display: block;
transform: translate(0, -50%);
top: 50%;
pointer-events: none;
width: 25px;
text-align: center;
font-style: normal;
}
.input-icon > input {
padding-left: 25px;
padding-right: 0;
}
.input-icon-right > i {
right: 0;
}
.input-icon-right > input {
padding-left: 0;
padding-right: 25px;
text-align: right;
}
承認された回答とは異なり、これはエラーがある場合の赤い境界線などの入力検証の強調表示を保持します。
float:left
しinput-symbol
、DIV
input-symbol
コンテナの外にある別のボタンを意味していました
float
悪いので私は今display:inline-block
と組み合わせて使用していvertical-align:bottom
ます:)私はすぐにいじることはできませんが、現在の例では他のCSSが多すぎます;-)
入力フィールドをスパンにラップできますposition:relative;
。次に:before
content:"€"
、通貨記号を追加し
て作成しposition:absolute
ます。ワーキングJSFiddle
HTML
<span class="input-symbol-euro">
<input type="text" />
</span>
CSS
.input-symbol-euro {
position: relative;
}
.input-symbol-euro input {
padding-left:18px;
}
.input-symbol-euro:before {
position: absolute;
top: 0;
content:"€";
left: 5px;
}
更新 ユーロ記号をテキストボックスの左側または右側に配置する場合。ワーキングJSFiddle
HTML
<span class="input-euro left">
<input type="text" />
</span>
<span class="input-euro right">
<input type="text" />
</span>
CSS
.input-euro {
position: relative;
}
.input-euro.left input {
padding-left:18px;
}
.input-euro.right input {
padding-right:18px;
text-align:end;
}
.input-euro:before {
position: absolute;
top: 0;
content:"€";
}
.input-euro.left:before {
left: 5px;
}
.input-euro.right:before {
right: 5px;
}
あなたが行うことができないため::before
にcontent: '$'
、入力にし、絶対位置の要素を追加し、余分なHTMLが追加されます-私は、バックグラウンドのSVGのインラインCSSにやるのが好きです。
それはこのようなものになります:
input {
width: 85px;
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='16px' width='85px'><text x='2' y='13' fill='gray' font-size='12' font-family='arial'>$</text></svg>");
padding-left: 12px;
}
以下を出力します。
注:コードはすべて1行にする必要があります。最新のブラウザではサポートはかなり良いですが、必ずテストしてください。
background-repeat: no-repeat;
$が入力ボックスで繰り返されていたので、追加してしまいました。
background-image
レンダリングできるため、サポートされていない可能性があるか、システム提供のウィジェットを使用する代わりにブラウザー自体がウィジェット自体をレンダリングする可能性があります。
'$'をテキスト入力フィールド内ではなく、前に置きます。送信後に「$」を解析する必要がないため、数値データの検証がはるかに簡単になります。
あなたは、とすることができますJQuery.validate() (またはその他)、ハンドル通貨といういくつかのクライアント側の検証ルールを追加します。これにより、入力フィールド内に「$」を含めることができます。ただし、セキュリティのためにサーバー側の検証を行う必要があるため、「$」を削除する必要があります。
Safariのみをサポートする必要がある場合は、次のように実行できます。
input.currency:before {
content: attr(data-symbol);
float: left;
color: #aaa;
}
のような入力フィールド
<input class="currency" data-symbol="€" type="number" value="12.9">
これにより、追加のタグが不要になり、シンボル情報をマークアップに保持できます。
私が好む別の解決策は、通貨記号の画像に追加の入力要素を使用することです。検索テキストフィールド内に虫眼鏡の画像を使用した例を次に示します。
html:
<input type="image" alt="Subscribe" src="/graphics/icons/search-button.png">
<input type="text" placeholder="Search" name="query">
css:
#search input[type="image"] {
background-color: transparent;
border: 0 none;
margin-top: 10px;
vertical-align: middle;
margin: 5px 0 0 5px;
position: absolute;
}
これにより、左側のサイドバーに次のように入力されます。
私はちょうど:beforeを入力で使用し、コンテンツとして$を渡しました
input{
margin-left: 20px;
}
input:before {
content: "$";
position: absolute;
}
.currencyinput {
border: 1px inset #ccc;
padding-bottom: 1px;//FOR IE & Chrome
}
.currencyinput input {
border: 0;
}
<span class="currencyinput">$<input type="text" name="currency"></span>
入力フォーム上の左の境界線を他のテキストフィールドと揃えることに関心がある場合、これらの回答はどれも役に立ちません。
ドル記号を絶対に左に約10pxまたは左5pxに配置することをお勧めします(入力ボックスの内側または外側のどちらにするかによって異なります)。内部のソリューションでは、入力CSSにdirection:rtlが必要です。
入力にパディングを追加して、direction:rtlを回避することもできますが、これにより、入力コンテナーの幅が変更され、同じ幅の他のコンテナーと一致しなくなります。
<div style="display:inline-block">
<div style="position:relative">
<div style="position:absolute; left:-10px;">$</div>
</div>
<input type='text' />
</div>
または
<div style="display:inline-block">
<div style="position:relative">
<div style="position:absolute; left:5px;">$</div>
</div>
<input type='text' style='direction: rtl;' />
</div>
<style>
.currencyinput {
border: 1px inset #ccc;
border-left:none;
}
.currencyinput input {
border: 0;
}
</style>
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<input type="text" oninput="this.value = this.value.replace(/[^0-9]/.g, ''); this.value = this.value.replace(/(\..*)\./g, '$1');" style="text-align:right;border-right:none;outline:none" name="currency"><span class="currencyinput">%</span>
</body>
</html>
%
はい、ブートストラップを使用している場合、これは機能します。
.form-control input {
border: none;
padding-left: 4px;
}
そして
<span class="form-control">$ <input type="text"/></span>
.currencyinput {
border: 1px inset #ccc;
border-left:none;
}
.currencyinput input {
border: 0;`enter code here`
}
<input type="text" oninput="this.value = this.value.replace(/[^0-9]/.g, ''); this.value = this.value.replace(/(\..*)\./g, '$1');" style="text-align:right;border-right:none;outline:none" name="currency"><span class="currencyinput">%</span>