作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
" width="100%" he-6ren">
试图在我的嵌入式 YouTube Player 上创建一个动态 url 栏.
代码如下所示,但如您所见,输入并没有横跨整个屏幕。
<?php
$uri='https://www.playstation.com/etc/designs/pdc/clientlibs_youtube/swf/ps-youtube-player.swf?v=' .$_GET['v'] . '&embedding=0&autoplay=0&sharing=0&fullscreen=1';
$old='https://youtube.com/embed/' . $_GET['v'] . '?autoplay=1&fs=1&modestbranding=1&rel=0&theme=light&origin=https://www.tsiserver.us/WinTube';
$keep='https://youtube.com/watch?v='. $_GET['v'];
?>
<body style="background-color: black; margin: 0px;">
<div style="position: absolute; top: 0; left: 0; right: 0; bottom: 0; padding: 0px; margin: 0px; height: 20px; width: 100%;">
<input type="text" width="100%" value="<?php echo $keep; ?>" />
</div>
<div style="position: absolute; top: 20; left: 0; right: 0; bottom: 0; padding: 0px; margin: 0px;">
<iframe src="<?php echo $old; ?>" width="100%" height="100%" frameBorder="0" />
</div>
目标浏览器是 Microsoft Edge,如果有任何区别的话。
最佳答案
width
属性已弃用,您需要使用 css:
<input type="text" style="width: 100%;" value="<?php echo $keep; ?>">
如果您将它放在一个单独的样式表中甚至会更好,这样您就可以轻松地重用您的样式并将它们缓存在浏览器中。
关于php - 如何将输入文本拉伸(stretch)到全宽?动态PHP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31381782/
我是一名优秀的程序员,十分优秀!