リスト・テーブル

リスト

  • テキストテキスト
  • テキストテキスト
  • テキストテキスト
<ul class="list_01">
<li>テキストテキスト</li>
<li>テキストテキスト</li>
<li>テキストテキスト</li>
</ul>

数字

  1. テキストテキスト
  2. テキストテキスト
  3. テキストテキスト
<ol class="list_01">
<li>テキストテキスト</li>
<li>テキストテキスト</li>
<li>テキストテキスト</li>
</ol>

丸数字

  1. テキストテキスト
  2. テキストテキスト
  3. テキストテキスト
  1. テキストテキスト
  2. テキストテキスト
  3. テキストテキスト
<ol class="list_number">
<li>テキストテキスト</li>
<li>テキストテキスト</li>
<li>テキストテキスト</li>
</ol>
<ol class="list_number red">
<li>テキストテキスト</li>
<li>テキストテキスト</li>
<li>テキストテキスト</li>
</ol>

Q&A

テキストテキストテキストテキストテキスト
テキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト
<dl class="list_qa">
<dt>テキストテキストテキストテキストテキスト</dt>
<dd>テキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト</dd>
</dl>

見出し太字と説明文

・見出し見出し見出し見出し見出し
テキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト
1. 見出し見出し見出し見出し見出し
テキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト
<dl class="dlList01">
<dt>・見出し見出し見出し見出し見出し</dt>
<dd>テキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト</dd>
</dl>
<dl class="dlList01">
<dt>1. 見出し見出し見出し見出し見出し</dt>
<dd>テキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト</dd>
</dl>

お知らせリスト

2015年 00月 00日
テキストテキストテキストテキストテキストテキスト。
2015年 00月 00日
テキストテキストテキストテキストテキストテキスト。
<dl class="dlInfo01">
<dt>2015年 00月 00日</dt>
<dd>テキストテキストテキストテキストテキストテキスト。</dd>
</dl>
<dl class="dlInfo01">
<dt>2015年 00月 00日</dt>
<dd>テキストテキストテキストテキストテキストテキスト。</dd>
</dl>

テーブル

上下ライン

th1td1
th2td2
<table class="table_01" border="0" cellspacing="0" cellpadding="0">
<colgroup><col width="30%"><col width="70%"></colgroup>
<tbody>
<tr>
<th>th1</th>
<td>td1</td>
</tr>
<tr>
<th>th2</th>
<td>td2</td>
</tr>
</tbody>
</table>

ライン

th1td1
th2td2
<table class="table_02" border="0" cellspacing="0" cellpadding="0">
<colgroup><col width="30%"><col width="70%"></colgroup>
<tbody>
<tr>
<th>th1</th>
<td>td1</td>
</tr>
<tr>
<th>th2</th>
<td>td2</td>
</tr>
</tbody>
</table>

th色付き

th1td1
th2td2
<table class="table_03" border="0" cellspacing="0" cellpadding="0">
<colgroup><col width="30%"><col width="70%"></colgroup>
<tbody>
<tr>
<th>th1</th>
<td>td1</td>
</tr>
<tr>
<th>th2</th>
<td>td2</td>
</tr>
</tbody>
</table>

ストライプ

th1td1
th2td2
th2td2
th2td2
<table class="table_01 striped" border="0" cellspacing="0" cellpadding="0">
<colgroup><col width="30%"><col width="70%"></colgroup>
<tbody>
<tr>
<th>th1</th>
<td>td1</td>
</tr>
<tr>
<th>th2</th>
<td>td2</td>
</tr>
<tr>
<th>th2</th>
<td>td2</td>
</tr>
<tr>
<th>th2</th>
<td>td2</td>
</tr>
</tbody>
</table>

スマホ対応スクロール

classに「scroll」を追加します。theadにthの項目を入れ、tdはtbodyで囲います。
※rowspan等のセルの結合と改行(<br>)は対応していません。

th1th2th3
td1テキストテキストtd2テキストテキストtd3テキストテキスト
td1テキストテキストテキストtd2テキストテキストテキストtd3テキストテキストテキスト
<table class="table_03 scroll" border="0" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th>th1</th>
<th>th2</th>
<th>th3</th>
</tr>
</thead>
<tbody>
<tr>
<td>td1テキストテキスト</td>
<td>td2テキストテキスト</td>
<td>td3テキストテキスト</td>
</tr>
<tr>
<td>td1テキストテキストテキスト</td>
<td>td2テキストテキストテキスト</td>
<td>td3テキストテキストテキスト</td>
</tr>
</tbody>
</table>

左側の幅を調整

テーブルブロックを選択後、サイドパネルのブロック下部にある「高度な設定」→「追加CSSクラス」に以下のクラスを設定します。

・幅20% クラス名:table-td-w20
・幅30% クラス名:table-td-w30
・幅40% クラス名:table-td-w40
・幅50% クラス名:table-td-w50
・幅60% クラス名:table-td-w60
・幅70% クラス名:table-td-w70
・幅80% クラス名:table-td-w80

幅20%を設定テキストテキストテキストテキストテキストテキスト
幅20%を設定テキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト
2014年10月31日