2016-10-09 29 views
0

我正在处理任务,并使用jquery插件来创建Lightbox照片库。标题只允许600px的长度,我想知道我是否可以在html中做到这一点,它会与插件一起工作吗?标题来自alt =“”我使用的插件是photobox master。 https://github.com/yairEO/photobox是否可以在html中设置字幕最大宽度的长度?

我试过把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

风格添加到photobox” pbCaptionText类:

.pbCaptionText { 
    width: 600px; 
    /* or alternatively */ 
    max-width: 600px; 
} 
相关问题