我从我的数据库中检索嵌入代码视频。但是,在 db 中,它们是 650 x 650。我想要的是使它们变小。
使用模板精简版标签,我试过这个
<tr>
<td>Videos</td>
<td>
<div height="100" width =" 200" />
{foreach value=movieF from=$movieFragman}
{$movieF.embedCode}
{/foreach}
</div>
</td>
</tr>
但div
不起作用。我能为此做些什么?
使用下面的代码,我设置了 div 的宽度高度
</style><style type="text/css">
{literal}
div.embed
{
width:200px;
height:100px;
}
{/literal}
</style>
有时候是这样的..