-1

我对网络开发比较陌生,我的学校要求我创建一个网页来托管学校的网络节目,但我无法将嵌入式视频居中。

我尝试在嵌入代码中添加内联样式margin-left: auto; margin-right: auto;,但这并没有使其居中。我可以手动更改边距,但我希望每当有人访问该页面时视频自动居中。

嵌入标签不支持自动边距吗?

<!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>
<link rel="stylesheet" type="text/css" href="SDL.css">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Home</title>
</head>

<body>
<div style="background-image:url(img/Stage-Background.png)"; margin-top:100px; margin-bottom: 100px;>

<embed
src="http://blip.tv/play/AwGUv2w"
type="application/x-shockwave-flash" width="669"
height="500" allowscriptaccess="always"
allowfullscreen="true" style="margin-left:auto; margin-right:auto;"></embed>
</div>
</body>
</html>

显示边缘样式被忽略的更简单示例,至少在 Chrome 上:

/* does not center it: */
embed { margin: 0 auto; }

div, embed { border: 1px solid black; }
div { width: 100%; }
<div>
  <embed src="https://cdn.sstatic.net/stackexchange/Img/se-logo.png">
</div>
  

在 Windows Chrome 上呈现为:

在此处输入图像描述

4

1 回答 1

2

在您的嵌入代码中,尝试在嵌入代码之前和之后使用以下内容。

<center>
   <embed>
        //youtube url here..
   </embed>
</center>

或者你可以使用这个边距:0 auto;

于 2013-04-26T07:21:38.103 回答