div로 표나누기할때 이게 좀...-_-;;
css
#placewrap { width:1000px float:left; }
#placel { width:570px float:left; }
#placer { width:430px float:right; }
#placeb { width:1000px float:left; }
<div id="placewrap">
<!--내용큰테이블시작-->
<div id="placel">
<!--왼쪽내용 시작 -->
테이블
<!--왼쪽 내용끝 -->
</div>
<div id="placer">
<!-- 오른쪽 내용시작 -->
테이블
<!-- 오른쪽 내용끝 -->
</div>
<div id="placeb">
<!-- 하단 테이블 시작 -->
테이블
<!-- 하단 테이블 끝 -->
</div>
<!-- 큰테이블 끝 -->
</div>
이렇게 나눴는데 생각엔
| | |
| | |
| | |
----------------
----------------
이렇게 나와야 하는데...그냥 아래로 차곡차곡 나열이 되네요.
뭐가 잘못된건가요?
|
댓글을 작성하시려면 로그인이 필요합니다.
로그인
댓글 4개
--------------------------------------
#placewrap { width:1000px; float:left; }
#placel { width:570px; float:left; }
#placer { width:430px; float:right; }
#placeb { width:1000px; float:left; }
그렇네요..ㅜ.ㅜ
몇일째 이놈들과 씨름했더니 이제 눈도 안뵈고...
2시간동안 코딩만 가지고 ㅠ.ㅠ;; 우엉~~
감사합니다.