dreamweaver 背景图片居中

2025-02-22 15:30:12
推荐回答(5个)
回答1:

实现原理:将图片放到表格单元格里,通过添加align="center"实现居中。

1.准备图片素材,新建html网页。

2.打开Dreamweaver,在里插入如下代码:

3.在IE浏览器里预览。

回答2:





无标题文档








背景图片给个DIV,在DIV中写上margin:auto;就自动居中了

回答3:

  1.直接定义背景样式:
 

 background-position:center top;

  2. body部分引用背景图片,对图片位置进行定义:

  body{background:url(你的图片的文件路径) center center; no-repeat;}

回答4:

背景图片不能居中显示!

回答5:

background: url(xxxxx) no-repeat center center #000;

相关问答