1
我有一行在哪裏填充3列並排像this。問題是當我選擇一個JSON節點時,它將通過添加一個額外的div來填充樹的路徑。因此我的桌子有點像this。CSS 3佈局3列在1行
這是我的HTML和CSS代碼:
.Row
{
display: table;
width: 100%;
height: 500px;
table-layout: fixed; /*Optional*/
border-spacing: 10px; /*Optional*/
}
.Column
{
display: table-cell;
height: 400px;
position: static;
}
.jsoneditor-outer.has-nav-bar {
height: 500px;
}
json-editor{
height: 500px;
}
<div class="Row">
<div class="Column"><json-editor [options]="editorOptions" [data]="data" ></json-editor></div>
<div class="Column"><json-editor [options]="editorOptions" [data]="data" ></json-editor></div>
<div class="Column"><json-editor [options]="editorOptions" [data]="data" ></json-editor></div>
</div>
你必須提供沒有工作代碼的工作代碼我無法解決你的問題 –