实现原理:将图片放到表格单元格里,通过添加align="center"实现居中。
1.准备图片素材,新建html网页。
2.打开Dreamweaver,在
里插入如下代码:3.在IE浏览器里预览。
无标题文档
背景图片给个DIV,在DIV中写上margin:auto;就自动居中了
1.直接定义背景样式:
background-position:center top;
2. body部分引用背景图片,对图片位置进行定义:
body{background:url(你的图片的文件路径) center center; no-repeat;}
背景图片不能居中显示!
background: url(xxxxx) no-repeat center center #000;