「CSS」background:noneで背景画像を上書きして画像なしにする

2022年3月15日

書式
.クラス名{
background:none;
}
「background:none」を使って既にあるbackgroundの背景画像に対して上書きして消せます。
使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<style>
.cft {
background: url(./img/logo.png);
}
div {
width: 220px;
height: 220px;
}
.cft{
background:none;
}
</style>
<div class="cft">画像なし</div>
<style> .cft { background: url(./img/logo.png); } div { width: 220px; height: 220px; } .cft{ background:none; } </style> <div class="cft">画像なし</div>
<style>
  .cft {
    background: url(./img/logo.png);
  }
  div {
    width: 220px;
    height: 220px;
  }
  .cft{
    background:none;
  }
</style>
<div class="cft">画像なし</div>

 

CSS

Posted by arkgame