background:none vs background:transparent what is the difference? Ask Question

background:none vs background:transparent what is the difference? Ask Question

Is there a difference between these two CSS properties:

background: none;
background: transparent;
  1. Are they both valid?
  2. Which one should be used and why?

ベストアンサー1

There is no difference between them.

の短縮形である6 つのプロパティのいずれにも値を指定しない場合はbackground、デフォルト値に設定されます。noneおよび がtransparentデフォルトです。

background-image1 つはを に明示的に設定しnonebackground-colorをに暗黙的に設定しますtransparent。もう 1 つはその逆です。

おすすめ記事