Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
申し訳ありませんが、これは初心者の質問のように思えますが、私の人生でdivを揃えることはできません。
親の中に 2 つの div があります。2 つの div を (ページに対して) 水平方向に中央揃えにする方法を教えてください。
サンプルコードの一部を次に示します。
<div id="container"> <div id="above">I belong above!</div> <div id="below">I belong below!</div> </div>
css を追加する必要があります。例えば:
<style> #container { width: 600px; } #above, #below { width: 400px; margin-left: auto; margin-right: auto; } </style>
<head>これをタグに追加します。
<head>