色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

css樣式聯系習題答案

謝彥文2年前8瀏覽0評論

在學習CSS的過程中,練習題是非常重要的。下面是一些CSS樣式練習題的答案。

/* 練習1 */
p {
font-size: 18px;
color: red;
text-align: center;
}
/* 練習2 */
h1 {
font-size: 32px;
color: blue;
text-align: left;
}
/* 練習3 */
.box {
width: 200px;
height: 200px;
background-color: yellow;
margin: 0 auto;
}
/* 練習4 */
ul li {
list-style: none;
display: inline-block;
padding: 10px;
background-color: green;
color: white;
}
/* 練習5 */
#header {
width: 100%;
height: 80px;
background-color: gray;
position: fixed;
top: 0;
left: 0;
z-index: 999;
}
/* 練習6 */
a {
color: red;
text-decoration: none;
}
/* 練習7 */
img {
width: 100%;
height: 100%;
}
/* 練習8 */
.box:hover {
transform: scale(1.2);
}

以上是一些CSS樣式練習題的答案。通過不斷練習,我們可以更好地理解和掌握CSS樣式。