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

css全部指令

錢多多2年前9瀏覽0評論

CSS全部指令是網(wǎng)頁設(shè)計中必須掌握的知識點之一,它包括了眾多指令,如下:

selector { property: value; }

其中,“selector”是選擇器,“property”是屬性,“value”是屬性值。下面分別介紹幾種常用的CSS指令。

1.文本樣式指令

/*設(shè)置字體*/
font-family: "宋體",sans-serif;
/*設(shè)置字體大小*/
font-size: 16px;
/*設(shè)置字體顏色*/
color: #333333;
/*設(shè)置字體粗細*/
font-weight: bold;
/*設(shè)置行高*/
line-height: 1.5;

2.邊框樣式指令

/*設(shè)置邊框顏色*/
border-color: #999999;
/*設(shè)置邊框?qū)挾?/
border-width: 1px;
/*設(shè)置邊框線條樣式*/
border-style: dotted;
/*設(shè)置圓角*/
border-radius: 5px;
/*設(shè)置邊框*/
border: 1px solid #999999;

3.背景樣式指令

/*設(shè)置背景顏色*/
background-color: #f0f0f0;
/*設(shè)置背景圖片*/
background-image: url("bg.png");
/*設(shè)置背景位置*/
background-position: center center;
/*設(shè)置背景重復(fù)方式*/
background-repeat: no-repeat;
/*設(shè)置背景*/
background: #f0f0f0 url("bg.png") center center no-repeat;

4.盒模型指令

/*設(shè)置元素寬度*/
width: 200px;
/*設(shè)置元素高度*/
height: 100px;
/*設(shè)置元素內(nèi)邊距*/
padding: 10px;
/*設(shè)置元素外邊距*/
margin: 20px;
/*設(shè)置元素邊框*/
border: 1px solid #999999;
/*設(shè)置盒模型*/
box-sizing: border-box;

除了以上這些指令,還有很多其他的CSS指令,如浮動、定位、列表樣式等。掌握這些指令可以為網(wǎng)頁設(shè)計增添許多美觀和實用的效果。