워드프레스 표 그리기

FLATO 테마에서 테스트.  아래와 같이 HTML코드로 표를 작성하면 표가 그려짐.

<h2>Tables</h2>
<table>
<thead>
<tr>
  <th>Employee</th>
  <th>Salary</th>
  <th></th>
</tr>
</thead>
<tbody>
<tr>
  <td><a href="http://example.org/">John Doe</a></td>
  <td>$1</td>
  <td>텍스트...</td>
</tr>
</tbody>
</table>

 
 
 

Tables

Employee Salary
John Doe $1 텍스트…

 
 
 

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다