레이아웃이 비뚤합니다.

· 13년 전 · 2839 · 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,871
13년 전 조회 2,472
13년 전 조회 1,923
13년 전 조회 1,485
13년 전 조회 2,096
13년 전 조회 5,420
13년 전 조회 1,767
13년 전 조회 2,281
13년 전 조회 3,906
13년 전 조회 2,468
13년 전 조회 2,841
13년 전 조회 2,457
13년 전 조회 3,119
13년 전 조회 2,544
13년 전 조회 2,133
13년 전 조회 1,597
13년 전 조회 1.4만
13년 전 조회 2,378
13년 전 조회 4,504
13년 전 조회 2,152
13년 전 조회 1,600
13년 전 조회 1,760
13년 전 조회 1,606
13년 전 조회 1,754
13년 전 조회 5,516
13년 전 조회 7,293
13년 전 조회 2,003
13년 전 조회 5,863
13년 전 조회 2,119
13년 전 조회 1,683
13년 전 조회 1,833
13년 전 조회 1,660
13년 전 조회 1,566
13년 전 조회 1,810
13년 전 조회 1,890
13년 전 조회 1,645
13년 전 조회 1,699
13년 전 조회 2,145
13년 전 조회 8,690
13년 전 조회 3,886
13년 전 조회 1,607
13년 전 조회 2,204
13년 전 조회 2,130
13년 전 조회 2,229
13년 전 조회 6,152
13년 전 조회 1,609
13년 전 조회 2,116
13년 전 조회 3,572
13년 전 조회 3,190
13년 전 조회 2,840
13년 전 조회 3,033
13년 전 조회 3,958
13년 전 조회 1,624
13년 전 조회 3,146
13년 전 조회 2,412
13년 전 조회 4,295
13년 전 조회 4,369
13년 전 조회 2,132
13년 전 조회 5,177
13년 전 조회 2,264
13년 전 조회 2,437
13년 전 조회 2,881
13년 전 조회 2,848
13년 전 조회 1,907
13년 전 조회 2,092
13년 전 조회 3,985
13년 전 조회 2,061
13년 전 조회 2,578
13년 전 조회 3,392
13년 전 조회 3,166
13년 전 조회 1,888
13년 전 조회 2,543
13년 전 조회 4,864
13년 전 조회 2,186
13년 전 조회 2,631
13년 전 조회 2,109
13년 전 조회 2,306
13년 전 조회 2,795
13년 전 조회 1,858
13년 전 조회 2,791
13년 전 조회 2,448
13년 전 조회 1,977
13년 전 조회 1만
13년 전 조회 2,110
13년 전 조회 1,951
13년 전 조회 2,067
13년 전 조회 2,773
13년 전 조회 2,130
13년 전 조회 2,257
13년 전 조회 1,915
13년 전 조회 1,764
13년 전 조회 5,917
13년 전 조회 2,178
13년 전 조회 2,236
13년 전 조회 2,031
13년 전 조회 7,910
13년 전 조회 2,062
13년 전 조회 2,403
13년 전 조회 2,376
13년 전 조회 4,011