1

Dynatree の列レイアウトの例をここに示します。

私は同じことを試みていますが、うまくいきません。列のより良い CSS プランを提案できる人はいますか?

私のJSFIDDLE

//output sample after proper clomun layout
// Motors      Parts(12253)      STOCK(12)      Collection(5)
// BIKES       Parts(12253)      STOCK(12)      Collection(5)
// BICYCLES    Parts(12253)      STOCK(12)      Collection(5)
4

1 に答える 1

0

これは私のために働いた

 #table {display: table;}
.row {display: table-row;}
.cell {display: table-cell;width:100px;}

<div id="table">
  <div class="row">
    <span class="cell">Parts(12253)</span>
     <span class="cell">STOCK(12)</span>v
     <span class="cell">Collection(5)</span>
  </div>  
</div>
于 2013-05-25T10:26:30.587 に答える