我对网络开发比较陌生,我的学校要求我创建一个网页来托管学校的网络节目,但我无法将嵌入式视频居中。
我尝试在嵌入代码中添加内联样式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 上呈现为: