盒子属性
- width 宽度 width:320px;
- height 高度 height:320px;
- margin 外边距(上右下左) margin:1px 2px 1px 2px;
- padding 填充距(上右下左) padding:1px 2px 1px 2px;
- border 边框 border:1px solid grey;
- border-radius 圆角 border-radius:5px;
- box-shadow 盒子阴影 box-shadow:5px 5px 5px grey;
文字属性
- font-family 字体 font-family:Courier;
- font-sytle 字体样式 font-style:italic;
- font-weight 字体粗细 font-weight:bold;
- font-size 字体大小 font-size:18px;
- text-align 对齐方式 text-align:center;
- text-shadow 文本阴影 text-shadow:5px 5px 5px grey;
背景属性
- color 前景色 color:red
- background-color 背景色 background-color:red;
- background-image 背景图片 background-image:url(text.png);
- background-repeat 背景图片重复方式 background-repeat:repeat-y
- background-attachment 背景图片滚动方式 background-attachment:scroll
- background-position 背景图片初始位置 background-position:50px 50px