레이아웃이 비뚤합니다.

· 13년 전 · 2883 · 3
간단한 레이아웃입니다.
인크루드로 들어갈 파일인데요.
(아이프레임처럼 만들려고요)

근데, 레이아웃이 정말 안잡히네요.
이렇게 저렇게 태그써봐도 안잡히고
만들어놓으면, 브라우저나 버전따라 다르게 나오니.

어렵습니다.

헤드 스타일 부분이 레이아웃입니다.
아래 이미지 파일이 내용물이고요.


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>부산, 자연, 풍경</title>


<style type="text/css">

#align {   
width:100%;   
text-align:center;   

#content { 
margin:0px auto; /*위에서 센터로 놨음에도 또 이걸 해 주는 건 IE외의 다른 브라우저에선 이게 없으면 다시 왼쪽으로 붙기 때문이에요*/  
padding: 35px 0px 0px 0px;
width:705px; 
height:410px;
text-align:left;   
}

#menu1 {
   padding-left: 110px;
}


#menu2 {
   padding-left:: 140px;
        }

#menu3 {
   padding-left: 80px;
        }
#menu4 {
   padding-left:110px;
       }

</style>


</head>





<body>



<div id="aline">
<div id="content">





<span id="menu1">
</span>


<span id="menu2">
</span>


<span id="menu3">
</span>


<span id="menu4">
</span>




</div>
</div>





</body>


</html>



|

댓글 3개

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>부산, 자연, 풍경</title>
<style type="text/css">
#align {width:100%; text-align:center;}
#content {
margin:0px auto;
padding: 35px 0px 0px 0px;
width:400px;
height:410px;
/* text-align:left; */
}
#content span {display:block; float:left; width:170px; padding:0 10px;}
/*
#menu1 {padding-left: 110px;}
#menu2 {padding-left:: 140px;}
#menu3 {padding-left: 80px;}
#menu4 {padding-left:110px;}
*/
</style>
</head>
<body>
<div id="aline">
<div id="content">
<span id="menu1">
<img src="http://badaro09.cafe24.com/img/bumenu1.gif" onMouseOver="this.src='http://badaro09.cafe24.com/img/bumenu11.gif'"
onMouseOut="this.src='http://badaro09.cafe24.com/img/bumenu1.gif'"
onclick="location.href='http://badaro09.cafe24.com/gnuboard4/bbs/board.php?bo_table=badaro09_1'"/>
</span>
<span id="menu2">
<img src="http://badaro09.cafe24.com/img/bumenu2.gif" onMouseOver="this.src='http://badaro09.cafe24.com/img/bumenu21.gif'"
onMouseOut="this.src='http://badaro09.cafe24.com/img/bumenu2.gif'"
onclick="location.href='http://badaro09.cafe24.com/gnuboard4/bbs/board.php?bo_table=badaro09_1'"/>
</span>
<span id="menu3">
<img src="http://badaro09.cafe24.com/img/bumenu3.gif" onMouseOver="this.src='http://badaro09.cafe24.com/img/bumenu31.gif'"
onMouseOut="this.src='http://badaro09.cafe24.com/img/bumenu3.gif'"
onclick="location.href='http://badaro09.cafe24.com/gnuboard4/bbs/board.php?bo_table=badaro09_1'"/>
</span>
<span id="menu4">
<img src="http://badaro09.cafe24.com/img/bumenu4.gif" onMouseOver="this.src='http://badaro09.cafe24.com/img/bumenu41.gif'"
onMouseOut="this.src='http://badaro09.cafe24.com/img/bumenu4.gif'"
onclick="location.href='http://badaro09.cafe24.com/gnuboard4/bbs/board.php?bo_table=badaro09_1'"/>
</span>
</div>
</div>
</body>
</html>

콘텐츠 안에 span값과 이미지 너비값이 다 똑같길래 하나의 span에 속성을 준거고용;;
content의 너비가 705로 되어있는걸 400으로 바꾸고 나머지는 2줄 정렬되도록 안쪽여백값을 양쪽으로 줘서 content영역안에 가운데로 정렬되도록 바꿨습니다.

span은 기본적으로 block속성의 요소가 아니므로 안쪽여백값이 잘 안먹기도 합니다
이럴땐 display:block요소로 block으로 지정시키고 나서 왼쪽정렬로 애들이 옆으로 붙게 만들었어요.
이미지 크기가 170px인거 같고..혹시나 몰라서 170px이라고 span의 너비값을 고정시켰습니다.(고정은 안시켜도 될꺼같네요)

어떤레이아웃을 표현하려고 하시는지는 제대로 모르겠지만 소스 보시고 참고하시면 됩니다.
span의 각각의 ID값은 주석처리해놨습니다;;
그럼 수고하세요;;
님글 도움 많이 되었습니다. span 속성에 대해 잘 몰랐던걸 알게 됐네요.
제가 원하는 모양새는 만들어진거 같은데,
한가지 아쉬운건 익스 6 이하버전에서는 모양이 엉망된다는 건데,
이건 다음에 풀어야 될듯요.
익스6은 생각을 못했네요 ㅋㅋㅋ
당연히 될줄알았습니다 ㅋㅋㅋㅋㅋㅋㅋ
익스6에서 어떤 문제가 발생되는지 알수가없으니 답을 못 드리겠네요;;ㅎㅎ
여튼 공부 열심히 하셔서 멋진 홈페이지 만드시길 바랍니다~
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
13년 전 조회 1,893
13년 전 조회 2,494
13년 전 조회 1,956
13년 전 조회 1,511
13년 전 조회 2,120
13년 전 조회 5,451
13년 전 조회 1,800
13년 전 조회 2,306
13년 전 조회 3,924
13년 전 조회 2,506
13년 전 조회 2,869
13년 전 조회 2,480
13년 전 조회 3,146
13년 전 조회 2,564
13년 전 조회 2,151
13년 전 조회 1,617
13년 전 조회 1.5만
13년 전 조회 2,414
13년 전 조회 4,533
13년 전 조회 2,184
13년 전 조회 1,626
13년 전 조회 1,787
13년 전 조회 1,631
13년 전 조회 1,781
13년 전 조회 5,547
13년 전 조회 7,314
13년 전 조회 2,035
13년 전 조회 5,891
13년 전 조회 2,148
13년 전 조회 1,715
13년 전 조회 1,871
13년 전 조회 1,685
13년 전 조회 1,594
13년 전 조회 1,842
13년 전 조회 1,934
13년 전 조회 1,678
13년 전 조회 1,726
13년 전 조회 2,170
13년 전 조회 8,719
13년 전 조회 3,930
13년 전 조회 1,642
13년 전 조회 2,228
13년 전 조회 2,155
13년 전 조회 2,257
13년 전 조회 6,178
13년 전 조회 1,645
13년 전 조회 2,139
13년 전 조회 3,596
13년 전 조회 3,226
13년 전 조회 2,884
13년 전 조회 3,064
13년 전 조회 3,977
13년 전 조회 1,655
13년 전 조회 3,170
13년 전 조회 2,431
13년 전 조회 4,324
13년 전 조회 4,397
13년 전 조회 2,154
13년 전 조회 5,210
13년 전 조회 2,303
13년 전 조회 2,470
13년 전 조회 2,910
13년 전 조회 2,877
13년 전 조회 1,932
13년 전 조회 2,112
13년 전 조회 4,015
13년 전 조회 2,089
13년 전 조회 2,608
13년 전 조회 3,419
13년 전 조회 3,198
13년 전 조회 1,913
13년 전 조회 2,583
13년 전 조회 4,888
13년 전 조회 2,220
13년 전 조회 2,663
13년 전 조회 2,136
13년 전 조회 2,343
13년 전 조회 2,827
13년 전 조회 1,887
13년 전 조회 2,828
13년 전 조회 2,473
13년 전 조회 2,013
13년 전 조회 1만
13년 전 조회 2,141
13년 전 조회 1,979
13년 전 조회 2,102
13년 전 조회 2,809
13년 전 조회 2,174
13년 전 조회 2,287
13년 전 조회 1,940
13년 전 조회 1,788
13년 전 조회 5,941
13년 전 조회 2,205
13년 전 조회 2,266
13년 전 조회 2,063
13년 전 조회 7,945
13년 전 조회 2,088
13년 전 조회 2,440
13년 전 조회 2,416
13년 전 조회 4,026