CSS:如何更改背景颜色



下面是代码:LABOUM
这是汤博乐账号:LABOUM2

我想将背景颜色从#FFFFFF更改为#FFCFEA,但我不知道该更改哪个代码。请帮忙!提前谢谢。^_^

您需要更改此

body {
  color: #000000;
  background-color: #FFFFFF;
  font-style: normal;
  text-align: justify;
  font-family: calibri;
  font-size: 11px;
  text-decoration: none;
  line-height: 110%;
}

到此

body {
  color: #000000;
  background-color: #FFCFEA;
  font-style: normal;
  text-align: justify;
  font-family: calibri;
  font-size: 11px;
  text-decoration: none;
  line-height: 110%;
}

在您的模板文件上。该行应该在两个类似<style type="text/css"></style> 的标签内

相关内容

  • 没有找到相关文章

最新更新