こんにちは、今日は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