0

ap タグの背景色を取り除くことができないように見える問題があります。これを行うことは可能ですか? div の背景を画像に設定しました。

出力:

ここに画像の説明を入力

CSS

   .box {
display: inline-block; vertical-align: top; margin: -1px; text-align: left; padding: 25px;
}    
#tables {
max-width: 1080px;
margin: 0 auto;
text-align: center;
}
#screenshots {
background: url(http://i.cubeupload.com/nAtNKD.jpg) no-repeat center;
width: 308px;
height: 280px;
}
#csmatches {
background: url(http://i.cubeupload.com/nAtNKD.jpg) no-repeat center;
width: 308px;
height: 280px;
}
#fixtures {
background: url(http://i.cubeupload.com/nAtNKD.jpg) no-repeat center;
width: 308px;
height: 280px;
}

HTML

<div id="tables">

<div id="screenshots" class="box">Screenshots</div>

<div id="csmatches" class="box"><p>Recent Match Results</p>
</div>
</div>

<div id="fixtures" class="box">Fixtures</div>

</div>
4

3 に答える 3

0

p の背景を削除するには、次を使用します。

.your-p-class {
    background: transparent !important;
}

またはそれらすべての場合:

.container p {
    background: transparent !important;
}

http://jsfiddle.net/Hive7/3waTE/

于 2013-07-28T12:30:31.997 に答える
0

あなたはこれをやろうとしましたか:

.mycontainer p {
    background-color:none;
}

div とその子に背景色属性を設定したようです...

于 2013-07-28T12:30:41.077 に答える
0
#csmatches p {
    background:none !important;
}
于 2013-07-28T12:31:24.027 に答える