2016-10-09 30 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; 
} 
相關問題