我正在顯示容器中的文件列表。 該列表由php腳本生成。當前一個容器溢出時,浮動右側屬性顯示不正確
對於每個文件,我都會關聯一個垃圾按鈕,以便在用戶需要時刪除該文件。爲此,我將垃圾桶按鈕設置爲右側。
但在某些情況下,由於溢出文件名太長,按鈕不顯示在同一行....任何想法如何解決這個問題?
這裏是生成腳本:
$list_docs = '<ul class="listDocs">';
foreach ($iterator as $file) {
// ignore filenames starting with . dot.
if (substr($file->getBasename(), 0, 1) === '.') {
continue;
}
$entryId++; // unique list entry id...
// use this and $prevDepth to check for nesting into and out of directories...
$curDepth = $iterator->getDepth();
$dirStart = $curDepth > $prevDepth; // nest down a directory?
$dirEnd = $curDepth < $prevDepth; // end of the directory
if ($dirEnd) { // UL end...
$list_docs .= '<!-- dir-end --></ul>';
}
if ($file->isDir()) { // display path details...
if ($dirStart) { // UL start... with Directory so will nest...
$list_docs .= '<ul class="listDocs indent">';
}
// display directory details
$list_docs .= '<li class="docResult"><i class="fa fa-folder"></i> <span id="file_'. $entryId. ' data-folder="'.$file->getPathname().'" class="folderClic">'.$file->getFilename().'</span><span class="file-remove fa fa-trash-o"></span></li>';
} else {
if ($dirStart) { // UL start... first time for this directory...
$list_docs .= '<ul class="listDocs indent">';
}
// display file details
$list_docs .= '<li class="docResult"><i class="fa fa-file-o"></i> <span id="file_'. $entryId .'" data-file="'.$file->getPathname().'" class="fileClic">'.$file->getFilename().'</span><span class="file-remove fa fa-trash-o"></span></li>';
}
$prevDepth = $curDepth; // record depth so we can check next time...
}
$list_docs .= '</ul>';
這段代碼粘貼到一個div:
<div class="documentList" id="documentList">Explorer</div>
這裏是CSS:
.file-remove {
float: right;
color: #700;
cursor: pointer;
}
.documentList{
display: inline-block;
background-color: rgba(255,255,255,1);
border-style: solid;
border-width: 2px;
border-color: rgba(0,0,0,0.3);
color: rgba(116,119,123,1);
padding: 0.5em 0.5em;
width: 20%;
min-height: 500px;
vertical-align: top;
}
.listDocs{
list-style: none;
text-align: left;
padding: 0em 0em;
margin: 0em 0em;
overflow: auto;
}
我也試圖展示它作爲一個表格,但我沒有設法得到適當的文件名列的寬度。
我也試圖與自動換行:打破字;在docResult類,然後我得到了以下內容:
你能提供一個圖像或jsfiddle,所以我們可以看看究竟發生了什麼? – leuquim
在編輯:) :) –
不,溢出越過填充,即使使用word-wrap:break-word;應用於包含標題的元素。 我不明白的是爲什麼它會在文件圖標之後進入下一行...... –