📜  css 覆盖样式 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:59.804000             🧑  作者: Mango

代码示例1
body {
background-color: black;
background-color: blue !important ;
  /*
  The second background color would show since it has
  a !important afterwards, this is to overwrite css you have
  already wrote. However, this is not recomended. 
  */
}