首页 > 解决方案 > 试图使视频的缩略图图像具有响应性

问题描述

当用户在我的网站上上传视频时,它会显示视频的静止图像,当前设置为 160 像素 x 160 像素。我的所有其他元素都是响应式的,除了视频 img。我可以写什么来获得更具响应性的设计?

这是控制该元素的代码:

.video_thumb_wrapper {
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
float: left;
margin-bottom: 2px;
background: #666;
width: 160px;
height: 160px;
border: 4px solid;
}

显示带有视频的页面

标签: csshtml

解决方案


推荐阅读