第一关
记得切换到style.css
/* ********** BEGIN ********** */
body{
background-color: ivory;
}
/* ********** END ********** */
h1 {
font-size: 40px;
text-align: center;
}
p {
font-size: 18px;
color: grey;
/* ********** BEGIN ********** */
background-color: lightblue;
/* ********** END ********** */
}
第二关
body {
/* ********** BEGIN ********** */
/*设置背景图片*/
background-image: url("https://www.educoder.net/attachments/download/211106") ;
/*设置背景图片模式*/
/* ********** END ********** */
}
div {
width: 90%;
height: 100%;
margin: auto;
}
第三关
body {
margin-right: 200px;
/* ********** BEGIN ********** */
/*设置背景图片*/
background: url("https://www.educoder.net/attachments/download/211104") no-repeat fixed right top;
/* ********** END ********** */
}
div {
width: 90%;
height: 100%;
margin: auto;
}