是否可以在html中设置字幕最大宽度的长度?

时间:2016-10-09 22:42:56

标签: html css

我正在处理一项任务,并使用Jquery插件创建了一个灯箱照片库。字幕只允许600px的长度,我想知道我是否可以在html中执行此操作,并且它是否适用于插件?标题来自alt =“”我使用的插件是photobox master。 https://github.com/yairEO/photobox

我尝试过style="width: 600px;" 但可能没有正确放置。任何建议/指导都非常感谢。谢谢。

html示例位于

之下
<li data-keywords="sand dunes beach">
  <a href="Photos/08.jpg">
    <img src="Photos/Thumbnails/08.jpg" alt="Sand Dunes on the beach, could be anywhere in the world, however it is one of my favourite places.  I really enjoyed staying at this location and would recommend it to anyone." title="Sand Dunes" class="photo">
  </a>
</li>

1 个答案:

答案 0 :(得分:1)

将样式添加到photobox&#39; pbCaptionText课程:

.pbCaptionText {
  width: 600px;
  /* or alternatively */
  max-width: 600px;
}