内联样式:样式优先级最高的
<div style="100px;height:100px;"></div>
style=“” 用冒号和分号
width 宽度
height 高度
background-color 背景颜色
float:left; 多个div横向排列
流式布局
<div style="100px;height:100px;float:left;margin:5px;"></div>
<div style="100px;height:100px;float:left;margin:5px"></div>
<div style="100px;height:100px;float:left;margin:5px"></div>
<div style="100px;height:100px;float:left;margin:5px"></div>
margin:5px 间隔
字体
<div style="color:red;font-size:x-large;font-family:黑体">哈哈哈</div>
color 颜色
font-size 字体大小
font-family 字体
设置背景图片
<body style="background-image:url(22.png);background-repeat:repeat-x;">
background-image:url(路径);
background-repeat:repeat-x 背景图片摆放类型