li 높이 가장 높은것에 맞추기
페이지 정보
작성자 운영자쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 댓글 0건 조회 2,844회 작성일 20-10-06 16:41본문
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function(){
var max_h=0;
$("#aaa
li").each(function(){
var h = parseInt($(this).css("height"));
if(max_h<h){ max_h = h; }
});
$("#aaa
li").each(function(){
$(this).css({height:max_h});
});
});
</script>
<ul id="aaa">
<li
style="float:left; height:300px;
background:#d50000;">개나리</li>
<li style="float:left;
height:500px; background:#666666;">진달래</li>
<li
style="float:left; background:#999999;">무궁화</li>
< /ul>
댓글목록
등록된 댓글이 없습니다.