color:#CCCCCC/*文字颜色*/
font-family:Arial,
Helvetica,
sans-serif/*设置字体*/
font-weight:bold/*文字加粗*/
text-align:center/*DIV标签内部水平方向居中或居左右*/
text-decoration:underline/*下划线*/
line-height:150%/*行高*/
margin:10px
0
5px
0/*容器外部边距*/
margin-top:10px
padding:10px
0
5px
0/*容器内部边距*/
float:left/*1.仅在做列的结构才用
2.用了float要用父DIV包起来*/
background-color:#999999/*背景颜色*/
background-image:url(images/test.gif)/*背景图片*/
background-repeat:no-repeat/*背景图片不平铺*/
background-position:5px
10px/*背景图片的位置,第一个为横坐标,第二个为纵坐标*/
list-style-type:none/*消除ul无序列表li前面的小黑点*/
display:block/*以块形式显示,通常用于链接中实现鼠标划过的效果*/
display:inline/*当用了float时做靠边的DIV外边距出现翻倍情况时才使用,针对的是IE6的一个bug*/
border:1px
solid
#ccc/*表格、DIV、LI、A等容器的边框属性,虚线是dashed*/
overflow:hidden/*溢出部分隐藏*/
overflow:auto/*自动判断容器高度,从而选择自动出现/隐藏垂直滚动条*/
/*自动适应高度,并且兼容火狐的做法*/
clear:both
overflow:hidden
代码分标签和属性,如<font size=""></font>,font是标签,size以及后面的都是属性。下面是我所了解的部分:border margin padding position float align text-decoration
text-align background background-color background-image...等等
它们具体的值,你可以去网上查下,也可以在DW里面,写上一些,DW会自动出来,有很多。。。