问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

dreamweaver 背景图片居中

发布网友 发布时间:2022-04-24 03:16

我来回答

5个回答

热心网友 时间:2023-10-24 08:08

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

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

2.打开Dreamweaver,在<body></body>里插入如下代码:

<table align="center" width=1133 height=1535 style="background:url(images/Book.jpg);">

<tr>

<td></td>

</tr>

</table>

3.在IE浏览器里预览。

热心网友 时间:2023-10-24 08:08

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
<!--
#demo{
width:650px;
height:530px;
background-image:url(../../Documents/test/xpic5266.jpg);
background-repeat:no-repeat;
margin:auto;
}
-->
</style>
</head>
<body>
<div id="demo">
</div>
</body>
</html>

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

热心网友 时间:2023-10-24 08:08

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

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

2.打开Dreamweaver,在<body></body>里插入如下代码:

<table align="center" width=1133 height=1535 style="background:url(images/Book.jpg);">

<tr>

<td></td>

</tr>

</table>

3.在IE浏览器里预览。

热心网友 时间:2023-10-24 08:08

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
<!--
#demo{
width:650px;
height:530px;
background-image:url(../../Documents/test/xpic5266.jpg);
background-repeat:no-repeat;
margin:auto;
}
-->
</style>
</head>
<body>
<div id="demo">
</div>
</body>
</html>

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

热心网友 时间:2023-10-24 08:09

  1.直接定义背景样式:
 

 background-position:center top;

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

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

热心网友 时间:2023-10-24 08:09

  1.直接定义背景样式:
 

 background-position:center top;

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

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

热心网友 时间:2023-10-24 08:09

背景图片不能居中显示!

热心网友 时间:2023-10-24 08:09

背景图片不能居中显示!

热心网友 时间:2023-10-24 08:10

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

热心网友 时间:2023-10-24 08:10

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

热心网友 时间:2023-10-24 08:08

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

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

2.打开Dreamweaver,在<body></body>里插入如下代码:

<table align="center" width=1133 height=1535 style="background:url(images/Book.jpg);">

<tr>

<td></td>

</tr>

</table>

3.在IE浏览器里预览。

热心网友 时间:2023-10-24 08:08

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

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

2.打开Dreamweaver,在<body></body>里插入如下代码:

<table align="center" width=1133 height=1535 style="background:url(images/Book.jpg);">

<tr>

<td></td>

</tr>

</table>

3.在IE浏览器里预览。

热心网友 时间:2023-10-24 08:08

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
<!--
#demo{
width:650px;
height:530px;
background-image:url(../../Documents/test/xpic5266.jpg);
background-repeat:no-repeat;
margin:auto;
}
-->
</style>
</head>
<body>
<div id="demo">
</div>
</body>
</html>

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

热心网友 时间:2023-10-24 08:09

  1.直接定义背景样式:
 

 background-position:center top;

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

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

热心网友 时间:2023-10-24 08:09

背景图片不能居中显示!

热心网友 时间:2023-10-24 08:08

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

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

2.打开Dreamweaver,在<body></body>里插入如下代码:

<table align="center" width=1133 height=1535 style="background:url(images/Book.jpg);">

<tr>

<td></td>

</tr>

</table>

3.在IE浏览器里预览。

热心网友 时间:2023-10-24 08:08

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
<!--
#demo{
width:650px;
height:530px;
background-image:url(../../Documents/test/xpic5266.jpg);
background-repeat:no-repeat;
margin:auto;
}
-->
</style>
</head>
<body>
<div id="demo">
</div>
</body>
</html>

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

热心网友 时间:2023-10-24 08:10

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

热心网友 时间:2023-10-24 08:08

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
<!--
#demo{
width:650px;
height:530px;
background-image:url(../../Documents/test/xpic5266.jpg);
background-repeat:no-repeat;
margin:auto;
}
-->
</style>
</head>
<body>
<div id="demo">
</div>
</body>
</html>

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

热心网友 时间:2023-10-24 08:09

  1.直接定义背景样式:
 

 background-position:center top;

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

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

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
天秤男吃醋的八大表现 天秤座男生吃醋时的表现 人工授精之后注意什么 人授后需要卧床休息吗 ...经两个月没发工资了,我不想干了,老板不给钱怎么办? 新手玩《兰斯10》这款游戏的快速通关攻略是什么? 兰斯10怎么用食券快速刷SSR 兰斯10二周目7cp怎么达成 兰斯10大侵攻达成条件介绍 跳舞同手同脚叫什么来着 喷油嘴清洗机主要功能 夏朝建立武装,制定刑法,设官职、监狱,是谁创制的? DW 图片置顶居中 夏朝制定了哪些刑法 DW8如何让表格内的背景图片居中显示 历史问题(关于夏朝) DW怎么把网页的图片居中 如何简要叙述夏,商,周时期朝代变更情况? 夏朝的统治制度 求指导,dreamweaver中插入图片,如何让它居中 夏朝设置了*机构军队刑法和监狱等什么标志着中国早期国家的产生 怎样在dw cs5表格中把图片居中? 夏朝的国家机构设置哪些为何要设这些机构 急急急急急急急急急急急急急急急急急急急急急急急急急 怎样用Dreamweaver使图片居中 夏朝还建立了那些国家机构?这些国家机构的性质是什么? 如何使在dreamweaver的“页面属性”中设置的背景图片居中? dreamweaver设置背景图片水平居中 在dreamweaver 中怎么使图片居中 中国移动余额查询里的话费余额和实时话费分别是什么意思 实时话费和账户余额是什么意思? 实时话费和账户余额都是神马意思? 夏朝的制度是什么啊。 夏朝国家的机构的性质是什么? 在DW里面怎么把背景图片居中 Dreamweaver cs4中如何让图片居中 夏朝建立的政权机构是什么 dw中背景大小比较大比如1500px,然后中间的正文只有1000px,我怎么定义背景的大小才会在整个页面居中显示 夏朝建立后组建了哪些国家机制? 夏朝实行什么经济和政治制度比如分封制 夏朝设立的相、卿、师都是什么官员 夏朝建立了什么制定了什么的什么被称为什么 夏朝制度是什么? 夏朝的政治 opporeno10xzoom手机 OPPO Reno 10倍变焦版多少钱? OPPO Reno 10倍变焦版值得买吗?和华为P30哪个好? opporeno10倍变焦版这台手机怎么样呢?值得购买吗? OPPO Reno 10倍变焦版忘记锁屏密码怎么办? 人民大学mpa在职研究生学费多少 小米平板忘记密码怎么办? 东北大学非全日制的mpa(公共管理)在哪个校区上课?我知道文法学院的全日制是在浑南,想问下非全