3テラバイト

プログラム関連備忘録サイト。主にゲーム。

CSS

段組レイアウトするcssプロパティcolumnsの使い方

投稿日:

こんにちは、今日はWebサイトで段組レイアウトすることができるcssプロパティ、columnsの使い方についてまとめていきます。

サンプル

<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="Content-Language" content="ja">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,user-scalable=no">
    <title>段組レイアウトサンプル</title>
    <style>
      #column {
        column-count: 2;
      }
    </style>
  </head>
  <body>
    <div id="column">
      <p>テキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト<p>
      <p>テキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト<p>
      <p>テキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト<p>
      <p>テキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト<p>
    </div>
  </body>
</html>
<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="Content-Language" content="ja">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,user-scalable=no">
    <title>段組レイアウトサンプル</title>
    <style>
      #column {
        column-width: 200px;
      }
    </style>
  </head>
  <body>
    <div id="column">
      <p>テキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト<p>
      <p>テキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト<p>
      <p>テキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト<p>
      <p>テキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト<p>
    </div>
  </body>
</html>

リンク

段組みレイアウトの使用
https://developer.mozilla.org/ja/docs/Web/Guide/CSS/Using_multi-column_layouts

column-count
https://developer.mozilla.org/ja/docs/Web/CSS/column-count

column-width
https://developer.mozilla.org/ja/docs/Web/CSS/column-width

-CSS


comment

メールアドレスが公開されることはありません。

関連記事

no image

CSS擬似要素一覧

要素名説明::afterその要素の最後の子要素として擬似要素を作成します。::backdrop::beforeその要素の最初の子要素として擬似要素を作成します。::cue::cue-region::f …

no image

CSSプロパティobject-fitの使い方

こんにちは、今日はCSSのプロパティ、object-fitの使い方についてまとめていきます。 W3Cページ それぞれの値適用時のイメージ図があります。 https://www.w3.org/TR/cs …

no image

角丸の設定を行うCSSプロパティborder-radiusの使い方

こんにちは、今日は角丸の設定を行うことができるCSSプロパティ、border-radiusの使い方についてまとめていきます。 使い方 1から4の値を指定することができます。 1つ指定した場合は4角に、 …

no image

CSS擬似クラス一覧

クラス名説明:activeアクティブ化されている要素:any-linkhref属性持つ要素:checkedラジオボタンやチェックボックスでチェックされている要素等:default関連する要素で規定の要 …