CSS -海报背景未通过硬件检查?

af7jpaap  于 2023-01-10  发布在  其他
关注(0)|答案(1)|浏览(112)

我已经联系了我的教授和同学;同时,我也把这一章重读了两遍,以找到答案。我们正在使用这本书:* 凯里的HTML5和CSS第7版 *
目前,海报背景没有通过检查。这是Cengage告诉我的:
Cengage Check pt 1; overlay
Cengage Check pt 2; my current site
Cengage Check pt 3; solution
具体操作说明如下:
节目单背景每个节目单部分由不同的ID值标识,范围从play 1到play 4。创建样式规则,使用以下背景颜色为每个节目单设置不同的背景颜色:
ID:播放1设置为hsl(240、100%、88%)
ID:播放2设置为hsl(25、88%、73%)
ID:播放3设置为hsl(0、100%、75%)
ID:播放4设置为hsl(296,86%,86%)
每个节目单节标题也将具有不同的字体。对于四个不同节目单中的h1标题,请创建样式规则以应用以下字体堆栈:
ID:play 1设置为香槟色,草书
ID:play 2设置为垃圾,'Times New Roman',时代,衬线
ID:play 3设置为冲击、木炭、无衬线
ID:play 4设置为Dobkin,草书
这是我的当前代码:

/* Section Styles */
section.playbill h1{
  font-size: 3em;
  font-weight: normal;
  margin: 0px;
  padding: 20px 0px 10px 20px;
}

#play1{
  background-color: hsl(240, 100%, 88%);
}

#play2{
  background-color: hsl(25, 88%, 73%);
}

#play3{
  background-color: hsl(0, 100%, 75%);
}

#play4{
  background-color: hsl(296, 86%, 86%);
}

#play1 h1{
  font-family: champagne, cursive;
}

#play2 h1{
  font-family: Grunge, 'Times New Roman', Times, serif;
}

#play3 h1{
  font-family: Impact, Charcoal, sans-serif;
}

#play4 h1{
  font-family: Dobkin, cursive;
}
ie3xauqp

ie3xauqp1#

试着写:

#play1,#play2,#play3,#play4{
margin:0px !important;
}

h1 { padding:0px;
margin:0px;
}

在代码末尾。

相关问题