Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Qualtrics,我需要缩放图像以在调查页面顶部运行。我已使用以下代码将问题文本/调查页面大小缩放为屏幕的 80%:
.Skin .SkinInner { width:80%; }
但似乎无法找到上传到 Qualtrics 的图形/图像文件的方法?
有人可以澄清一下吗?
调整这些大小的最佳方法是使用宽度和高度属性。
例如:
<img src="*" width="100px" height="150px">
或者,您也可以使用带有 id 或类的图像,例如:
<img src="*" class="className">
在这种情况下,您可以在 css 中设置宽度/高度,如下所示:
.className{ width: 100px; height: 150px; }