盒子属性

  1. width 宽度 width:320px;
  2. height 高度 height:320px;
  3. margin 外边距(上右下左) margin:1px 2px 1px 2px;
  4. padding 填充距(上右下左) padding:1px 2px 1px 2px;
  5. border 边框 border:1px solid grey;
  6. border-radius 圆角 border-radius:5px;
  7. box-shadow 盒子阴影 box-shadow:5px 5px 5px grey;

文字属性

  1. font-family 字体 font-family:Courier;
  2. font-sytle 字体样式 font-style:italic;
  3. font-weight 字体粗细 font-weight:bold;
  4. font-size 字体大小 font-size:18px;
  5. text-align 对齐方式 text-align:center;
  6. text-shadow 文本阴影 text-shadow:5px 5px 5px grey;

背景属性

  1. color 前景色 color:red
  2. background-color 背景色 background-color:red;
  3. background-image 背景图片 background-image:url(text.png);
  4. background-repeat 背景图片重复方式 background-repeat:repeat-y
  5. background-attachment 背景图片滚动方式 background-attachment:scroll
  6. background-position 背景图片初始位置 background-position:50px 50px