본문 바로가기
HTML

jstl로 html스타일 변경(스타일에 변수넣기)/java에서 스타일에 값넣을때

by redbear0077 2021. 7. 3.
반응형

jstl로 html스타일 변경

스타일에 if문을 필요로할때  또는 변수로 넣을때 사용

#설명

-만약 자바에서 보내준result.replyDepth가 2이면 margin-left:100px;로 변경해라

<div class="test" style="<c:if test="${result.replyDepth == 2}">margin-left:100px;</c:if>">
	<img src="./resources/img/classes-details/comment-1.png" alt="">
</div>
반응형