如何在PHP中调整ECHO内的<object>标签

时间:2016-10-12 18:20:43

标签: css styling

我希望嵌入式YouTube视频位于网页中心。我尝试使用css设置Matchable标签样式;它没有用。

<object>

1 个答案:

答案 0 :(得分:0)

使用text-align: center;

<html>
<head>
<style>
#test{
text-align: center;
top:500px;}
</style>

</head>
<body>

<div id="test"> 
    <object width="600" height="360">
        <param name="movie" value="http://www.youtube.com/v/<?php echo $id; ?>&amp;hl=en_US&amp;fs=1?rel=0"></param>
        <param name="allowFullScreen" value="true"></param>
        <param name="allowscriptaccess" value="always"></param>
        <embed src="http://www.youtube.com/v/<?php echo $id; ?>&amp;hl=en_US&amp;fs=1?rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="600" height="360"></embed>
    </object>
</div>
</body>
</html>