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

css編寫題

夏志豪1年前8瀏覽0評論

在前端開發(fā)中,CSS是一個至關(guān)重要的技能。而編寫CSS風(fēng)格的代碼更是一個非常重要的能力。因此,我們需要不斷地練習(xí)自己的CSS編寫能力,以提高自己在前端開發(fā)中的競爭力。

/*下面提供幾個CSS編寫的練習(xí)題*/

1. 實現(xiàn)一個水平垂直居中的盒子

.box{
width: 200px;
height: 200px;
background-color: #f0f0f0;
position: absolute;
top: 50%;
left: 50%;
margin-left: -100px;
margin-top: -100px;
}

2. 實現(xiàn)一個三欄布局(左右兩欄固定寬度,中間欄自適應(yīng)寬度)

.left{
width: 200px;
float: left;
background-color: #f0f0f0;
}
.right{
width: 200px;
float: right;
background-color: #f0f0f0;
}
.middle{
margin: 0 200px;
background-color: #ccc;
}

3. 實現(xiàn)一個在鼠標(biāo)懸浮時背景變色的按鈕

.button{
display: inline-block;
padding: 10px 20px;
background-color: #666;
color: #fff;
}
.button:hover{
background-color: #f00;
}

4. 實現(xiàn)一個簡單的響應(yīng)式網(wǎng)頁布局

@media screen and (max-width: 768px){
.left, .right{
display: none;
}
.middle{
margin: 0;
}
}

總之,只有持續(xù)不斷地練習(xí),才能夠提高自己的CSS編寫能力。同時,我們也可以借助網(wǎng)上提供的一些CSS編寫練習(xí)題,以此挑戰(zhàn)自我、提高自己的技能水平。