我正在执行一项任务,并已使用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>
最佳答案
将样式添加到photobox的pbCaptionText
类中:
.pbCaptionText {
width: 600px;
/* or alternatively */
max-width: 600px;
}