Chromeブラウザでdivの背景を設定できません。あなたが見ていると、私は実装してスタイルを与えていない小さな明るい灰色のボックスがあります。それはランダムに表示され、必要に応じて動き、変形します。それはSafariやFirefoxでは起こりません。私はそれをどうやって修正するのかを理解できません。CSS div背景色のバグ?
私の問題は非常に奇妙です。
div className="row competition">
<div className="col-lg-6 register-answer">
<div className="compet-content">
<input type="text" className="form-control answer" id="usr"/>
<input type="text" className="form-control email" id="usr"/>
<button type="button" className="btn btn-primary">Enter Competition</button>
</div>
</div>
<div className="col-lg-6">
<div className="pic">
<img src={CompetitionImage} alt="Competition Image"/>
</div>
</div>
</div>
編集(CSSクラス):
.col-lg-6.register-answer {
background-color: #adadad;
.compet-content {
width: 100%;
height: 100%;
input {
}
button {
}
}
}
私は「レジスタ答えは」クラスのbackgound色を設定していますが、私は、すべてのdivと問題にしようとした私は、次のコードを持っています常に同じです(クロムでのみ発生します)。 https://drive.google.com/file/d/0B9yzCbrCAKvKRVE3VmNJNmhqLVk/view?usp=sharing
あなたは1つのjsfiddleを作ることができますか? –
@ devnull69私は反応を使用しています、あなたは私のタグで見ることができます – MiguelVeloso
@ BrandonIbbotson私は質問を編集し、そこでCSSクラスを作成しました – MiguelVeloso