[프로그래머스]
문제해석/문제풀이/코딩 (80%)
벨로그정리 (100%)
[Spring_AM]
강의다시보고 로직이해하기
흐름 파악하기 / 분석하기
<form action="../member/doLogin" method="POST">method = "GET"인 경우, 폼 데이터를 URL끝에 붙여서 사용자한테 보이게 보냄input<c:if test="${!rq.isLogined() }">
<li><a class="hover:underline" href="../member/login">LOGIN</a></li>
</c:if>
만약에 rq.islogined()가 참이 아니라면, LOGIN 링크를 사용자에게 보여줘.
테이블의 컬럼에 적용할 스타일 width와 background를 colgroup 태그에서 미리 적용함. 특히 각 컬럼의 길이를 설정하는데 가장 많이 사용
<colgroup>
<col style="width: 10%" />
<col style="width: 20%" />
<col style="width: 60%" />
<col style="width: 10%" />
</colgroup>
<thead>
<tr>
<th>번호</th>
<th>날짜</th>
<th>제목</th>
<th>작성자</th>
</tr>
</thead>
