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.
pタグを使用して列を作成する必要があります。コンテンツはコンテンツマネージャーを介して挿入されるため、作成しpたボックス内にコンテンツを含む要素が作成されます。
p
言ったように、2 つ以上の div を作成できません。コンテンツはp要素内に挿入されます
どうやってやるの?それを行うCSSの方法はありますか?
注: 雑誌や新聞のコラムなどのコラム
p 要素の CSS を変更して、幅と浮動小数点数を指定しようとしましたか?
何かのようなもの:
p { width: 300px; float: left; margin-left: 10px; }
まあ、あなたはアイデアを得ました:)
あなたはできる
CSS 段組みレイアウト モジュール
caniuse.com/#search=列
より古い学校の方法で:
p.column { float:left; width : (100 / nbr of columns)% /* 33.3% for 3 columns */ }