2つの背景画像が欲しい要素(ボタン)があります。1つはグラデーションで、もう1つはボタンの上に配置します。それ、どうやったら出来るの?
margin-topに似たようなものを追加する方法はありますか:-20px; またはそのようなもの?
2つの背景画像が欲しい要素(ボタン)があります。1つはグラデーションで、もう1つはボタンの上に配置します。それ、どうやったら出来るの?
margin-topに似たようなものを追加する方法はありますか:-20px; またはそのようなもの?
解決策は:beforepsuedoを使用しています
例えば:
.box:before{
content:url(icon_neutral.png);
display:block;
position:relative;
top: -30px;
}
ここにあるガガリンの解決策によると:
<style type="text/css">
.modalBackground
{
background-image:url('image/img2.jpg');
background-repeat:repeat-x ;
filter: alpha(opacity=80);
opacity: 0.8;
z-index: 10000;
}
</style>