2016-09-21 10 views
0

私は6つのテーブルを並べて欲しいですが、それらの終わりに達すると、次の行で注文されます。テーブルオーバーフローで並んで

私はfloatを試しましたが、表示幅が達成されたときに要素が次の行から開始されました。

ヒントをお待ちしています。

私のコードは次のとおりです。1行にまとめることができなかったので、すべてのスタイルフォーマットを削除しました。

Link: http://jsfiddle.net/S3n6D/101/ 
+2

あなたはあなたのコードを投稿することができますか? – Dsenese1

+0

ええ、私はちょうど私が本当にそれを台無しにした原因を取り去った...あなたは私にヒントを与えることができますか? – Moonstar

+0

実際のコードをリンクに入れるのではなく、コードスニペットを使用して質問に貼り付ける必要があります。 –

答えて

0

あなたはこのCSSを使用できると思います。

table { 
    width:15%; 
    float:left; 
} 

さらに広いテーブルが必要な場合は、ボディの幅を変更することもできます。あなたのコードにいくつかのクリーンと注文後

body { 
    width:1800px; 
} 

table { 
    width:300px; /* or 15% if you want it more dynamic */ 
    margin:0; 
    float:left; 
} 
+0

行の終わりに達すると、要素は新しい行に設定されます...私はちょうどそれらを整列させ、スクロール可能にしたいです... – Moonstar

0

、それを試してください。

div { 
 
    float: left; 
 
}
<table border="1"> 
 
    <thead> 
 
    <tr> 
 
     <th rowspan="1">&nbsp;</th> 
 
    </tr> 
 
    <tr> 
 
     <th>Filiale</th> 
 
    </tr> 
 
    </thead> 
 
</table> 
 
<br> 
 
<div> 
 
    <table border="1"> 
 
    <!-- MO --> 
 
    <thead> 
 
     <tr> 
 
     <th colspan="14">19.09.2016</th> 
 
     </tr> 
 
     <tr> 
 
     <th>1</th> 
 
     <th>2</th> 
 
     <th>3</th> 
 
     <th>4</th> 
 
     <th>5</th> 
 
     <th>6</th> 
 
     <th>7</th> 
 
     <th>8</th> 
 
     <th>9</th> 
 
     <th>10</th> 
 
     <th>11</th> 
 
     <th>12</th> 
 
     <th>13</th> 
 
     </tr> 
 
    </thead> 
 
    <tbody> 
 

 
    </tbody> 
 
    </table> 
 
</div> 
 

 

 
<div> 
 
    <table border="1"> 
 
    <!-- DI --> 
 
    <thead> 
 
     <tr> 
 
     <th colspan="13">20.09.2016</th> 
 
     </tr> 
 
     <tr> 
 
     <th>1</th> 
 
     <th>2</th> 
 
     <th>3</th> 
 
     <th>4</th> 
 
     <th>5</th> 
 
     <th>6</th> 
 
     <th>7</th> 
 
     <th>8</th> 
 
     <th>9</th> 
 
     <th>10</th> 
 
     <th>11</th> 
 
     <th>12</th> 
 
     <th>13</th> 
 
     </tr> 
 
    </thead> 
 
    <tbody> 
 

 
    </tbody> 
 
    </table> 
 
</div> 
 

 
<div> 
 
    <table border="1"> 
 
    <!-- MI --> 
 
    <thead> 
 
     <tr> 
 
     <th colspan="13">21.09.2016</th> 
 
     </tr> 
 
     <tr> 
 
     <th>1</th> 
 
     <th>2</th> 
 
     <th>3</th> 
 
     <th>4</th> 
 
     <th>5</th> 
 
     <th>6</th> 
 
     <th>7</th> 
 
     <th>8</th> 
 
     <th>9</th> 
 
     <th>10</th> 
 
     <th>11</th> 
 
     <th>12</th> 
 
     <th>13</th> 
 
     </tr> 
 
    </thead> 
 
    <tbody> 
 

 
    </tbody> 
 
    </table> 
 
</div> 
 
<div> 
 
    <table border="1"> 
 
    <!-- DO --> 
 
    <thead> 
 
     <tr> 
 
     <th colspan="13">22.09.2016</th> 
 
     </tr> 
 
     <tr> 
 
     <th>1</th> 
 
     <th>2</th> 
 
     <th>3</th> 
 
     <th>4</th> 
 
     <th>5</th> 
 
     <th>6</th> 
 
     <th>7</th> 
 
     <th>8</th> 
 
     <th>9</th> 
 
     <th>10</th> 
 
     <th>11</th> 
 
     <th>12</th> 
 
     <th>13</th> 
 
     </tr> 
 
    </thead> 
 
    <tbody> 
 

 
    </tbody> 
 
    </table> 
 
</div> 
 
<div> 
 
    <table border="1"> 
 
    <!-- FR --> 
 
    <thead> 
 
     <tr> 
 
     <th colspan="13">23.09.2016</th> 
 
     </tr> 
 
     <tr> 
 
     <th>1</th> 
 
     <th>2</th> 
 
     <th>3</th> 
 
     <th>4</th> 
 
     <th>5</th> 
 
     <th>6</th> 
 
     <th>7</th> 
 
     <th>8</th> 
 
     <th>9</th> 
 
     <th>10</th> 
 
     <th>11</th> 
 
     <th>12</th> 
 
     <th>13</th> 
 
     </tr> 
 
    </thead> 
 
    <tbody> 
 

 
    </tbody> 
 
    </table> 
 
</div> 
 
<div> 
 
    <table border="1"> 
 
    <!-- SA --> 
 
    <thead> 
 
     <tr> 
 
     <th rowspan="1">&nbsp;</th> 
 
     <th colspan="13">24.09.2016</th> 
 

 
     </tr> 
 
     <tr> 
 
     <th>1</th> 
 
     <th>2</th> 
 
     <th>3</th> 
 
     <th>4</th> 
 
     <th>5</th> 
 
     <th>6</th> 
 
     <th>7</th> 
 
     <th>8</th> 
 
     <th>9</th> 
 
     <th>10</th> 
 
     <th>11</th> 
 
     <th>12</th> 
 
     <th>13</th> 
 
     </tr> 
 
    </thead> 
 
    <tbody> 
 
    </tbody> 
 
    </table> 
 
</div>

+0

ありがとう。しかし、私はそれらを一直線に並べ替えることなくしたいと思っています...オーバーフローはスクロールする必要があります...私は非常に初心者であり、とても試しました... – Moonstar

+0

私はすぐに画像を送るでしょう... – Moonstar

関連する問題