を使用して、div内のスパンの背景をフルサイズにする私たちのゲームサーバーのコントロールパネル用のゲームサーバーコンソールを作成しようとしています。 私が持っている小さなスタイリングの問題は、すべての奇数ラインが少し明るい背景を持つ必要があるということです。CSSの
コード:
showLoading('gameTerminal_content', '32', 'html', '');
.gameTerminal_content_outputLine:nth-of-type(odd) { width:500px; background: #4C3C33; }
<div class="well-md" id="gameTerminal" style="background: #2A211C; height: 300px; max-width: 100%; overflow-y:scroll; font-family:'Courier New', Courier, monospace">
\t \t \t \t \t \t \t \t \t \t \t \t \t \t \t
<p>
\t \t \t \t \t \t \t \t \t \t \t
<span id="gameTerminal_content" style="color:#80FF80; width: 100%;">
<span class="gameTerminal_content_outputLine">Line 1</span><br /><br />
<span class="gameTerminal_content_outputLine">Line 2</span><br /><br />
<span class="gameTerminal_content_outputLine">Line 3</span><br /><br />
\t \t \t \t \t \t \t \t \t \t \t \t \t \t \t \t
</span>
</p>
\t \t \t \t \t \t \t \t \t \t \t \t \t \t \t
<!--<input type="text" name="gameTerminal_input" style="background: #4C3C33; float: left; color: #FFFFFF; width: 90%; border:none; position: absolute; bottom: 0; outline: none;" />-->
<div id="gameTerminal_scrollHeigth"></div>
</div>
正確に私が探していた場所、実際に私が欲しかったことを読んでくれてありがとう:) –