私は単純なinput-group
を持っています。このフィールドには、入力フィールドとボタンが含まれています。ブートストラップボタンのテキストが表示されない
奇妙なことは、表示されません。色はbackground-colorと同じではなく、checked要素でチェックされます。
私はJSfiddleを作成しましたが、それは完全にそこに示し原因となるが、何もしない...
https://jsfiddle.net/u691aw17/
はたぶん皆さんのアイデアを持っていますか?
<!-- language: lang-css -->
/* CSS */
div.input-group {
width: 350px;
margin-left: auto;
margin-right: auto;
font-size: 14px;
input[type="text"]{
width:300px;
height:50px;
font-size: 14px;
}
input[type="text"]::-webkit-input-placeholder{
text-transform: uppercase;
font-size: 14px;
}
input[type="text"]:-moz-placeholder /* Firefox 18- */
{
text-transform: uppercase;
font-size: 14px;
}
input[type="text"]::-moz-placeholder /* Firefox 19+ */
{
text-transform: uppercase;
font-size: 14px;
}
input[type="text"]:-ms-input-placeholder{
text-transform: uppercase;
font-size: 14px;
}
span.input-group-btn button.btn {
width:150px;
height:50px;
line-height: 1em;
padding: 0px;
}
}
.btn {
background-color: green;
color:#ffffff;
}
<!-- language: lang-html -->
<div class="input-group">
<input type="text" class="form-control" placeholder="Email">
<span class="input-group-btn">
<button class="btn" type="button" >Sign up</button>
</span>
</div>
<!-- end snippet -->
ボタンが表示され、入力が確認できます。何が間違っている? –
私は知っていますが、プロジェクトのコードを正確にコピーしましたが、そこにテキストは表示されませんでした。 –
あなたのプロジェクトのコードがあなたを止めていることをどのように知っていますか? –