私はお互いの隣に1つか2つのテーブルのdivを表示しようとしています。テーブルは中央にする必要があります。私は今のところ、それに対する適切なCSSを見つけることができなかったdivの1つまたは2つのテーブル
<div class="all">
<div class="row"> <!-- row with 1 table in it -->
<div class="column">
<table class="centered">
...
</table>
</div>
</div>
<div class="row"> <!-- row with 2 tables in it -->
<div class="column">
<table class="centered">
...
</table>
</div>
<div class="column">
<table class="centered">
...
</table>
</div>
</div>
</div>
:
*div**************************************************************************** * Table 1 * * |...|...|...| * ******************************************************************************** *div**************************************************************************** * Table 2 Table 3 * * |...|...|...| |...|...|...| * ********************************************************************************
は私のHTMLは次のようになります。私の現在のCSSは次のようになります。
div.row {
display: block;
width: 100%;
}
div.column {
display: inline;
margin-left: auto;
margin-right: auto;
}
table.centered {
border: 1px;
border-style: solid;
margin: 20px;
}
jsfiddleはここにある:jsfiddle
これはあなたが探していたものですが、ここフィドルであれば...私はCSSを理解
これは私が探していたものです。ありがとう! – EasterBunnyBugSmasher
申し訳ありませんが、そのフィドルは、お互いの下に3つのテーブルをすべて表示します(?) – Johannes
私はリンクを更新しました。 – mariogl