欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

書籍css3參考手冊

江奕云2年前10瀏覽0評論

《CSS3參考手冊》是一本非常實用的書籍,它詳細介紹了CSS3的各種技術(shù)及其應用方法。下面讓我們來看一下這本書中的一些代碼示例。

/* CSS3選擇器 */
p:first-child {
color: red;
}
div:not(:first-of-type) {
background-color: lightgrey;
}
ul >li:nth-child(even) {
color: blue;
}
/* CSS3邊框 */
div {
border: 2px solid blue;
border-radius: 10px;
box-shadow: 5px 5px 5px grey;
}
/* CSS3漸變 */
div {
background: linear-gradient(to bottom right, blue, red);
}
/* CSS3動畫 */
div {
width: 100px;
height: 100px;
background-color: blue;
animation: myanimation 2s infinite;
}
@keyframes myanimation {
0% {
transform: scale(1);
}
50% {
transform: scale(1.5);
}
100% {
transform: scale(1);
}
}

以上代碼示例展示了CSS3中的一些常用技術(shù),比如選擇器、邊框、漸變、動畫等。這本書詳細介紹了這些技術(shù)的應用方法以及各自的屬性和取值范圍,很適合作為CSS3學習者的參考書。如果你對CSS3還不太了解,不妨去讀一讀這本書。