php 질문
본문
<img src="img/<?php echo mt_rand(1, 2200)?>.gif" style="max-width:100%;"/>
높이도하려면
<img src="img/<?php echo mt_rand(1, 2200)?>.gif" style="max-width:100%;" style="max-height:100%;"/> 이렇게 해야되나요?
답변 1
<img src="img/<?php echo mt_rand(1, 2200)?>.gif" style="max-width:100%;max-height:100%;"/>
이렇게 하심 됩니다.
답변을 작성하시기 전에 로그인 해주세요.