COMING SOON 🚀

레이아웃이 비뚤합니다.

· 13년 전 · 2729 · 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,755
13년 전 조회 2,382
13년 전 조회 1,823
13년 전 조회 1,378
13년 전 조회 1,992
13년 전 조회 5,309
13년 전 조회 1,652
13년 전 조회 2,172
13년 전 조회 3,777
13년 전 조회 2,389
13년 전 조회 2,728
13년 전 조회 2,352
13년 전 조회 3,012
13년 전 조회 2,448
13년 전 조회 2,025
13년 전 조회 1,480
13년 전 조회 1.4만
13년 전 조회 2,280
13년 전 조회 4,388
13년 전 조회 2,029
13년 전 조회 1,477
13년 전 조회 1,658
13년 전 조회 1,485
13년 전 조회 1,638
13년 전 조회 5,418
13년 전 조회 7,186
13년 전 조회 1,908
13년 전 조회 5,740
13년 전 조회 2,002
13년 전 조회 1,570
13년 전 조회 1,714
13년 전 조회 1,523
13년 전 조회 1,436
13년 전 조회 1,684
13년 전 조회 1,781
13년 전 조회 1,526
13년 전 조회 1,583
13년 전 조회 2,022
13년 전 조회 8,576
13년 전 조회 3,767
13년 전 조회 1,501
13년 전 조회 2,077
13년 전 조회 2,002
13년 전 조회 2,129
13년 전 조회 6,047
13년 전 조회 1,504
13년 전 조회 2,000
13년 전 조회 3,453
13년 전 조회 3,083
13년 전 조회 2,730
13년 전 조회 2,922
13년 전 조회 3,842
13년 전 조회 1,516
13년 전 조회 3,024
13년 전 조회 2,395
13년 전 조회 4,193
13년 전 조회 4,247
13년 전 조회 2,025
13년 전 조회 5,049
13년 전 조회 2,162
13년 전 조회 2,333
13년 전 조회 2,772
13년 전 조회 2,733
13년 전 조회 1,798
13년 전 조회 1,967
13년 전 조회 3,878
13년 전 조회 1,968
13년 전 조회 2,465
13년 전 조회 3,277
13년 전 조회 3,061
13년 전 조회 1,797
13년 전 조회 2,424
13년 전 조회 4,752
13년 전 조회 2,071
13년 전 조회 2,528
13년 전 조회 2,004
13년 전 조회 2,209
13년 전 조회 2,676
13년 전 조회 1,764
13년 전 조회 2,684
13년 전 조회 2,325
13년 전 조회 1,869
13년 전 조회 1만
13년 전 조회 2,007
13년 전 조회 1,852
13년 전 조회 1,941
13년 전 조회 2,663
13년 전 조회 2,022
13년 전 조회 2,145
13년 전 조회 1,804
13년 전 조회 1,649
13년 전 조회 5,804
13년 전 조회 2,059
13년 전 조회 2,114
13년 전 조회 1,923
13년 전 조회 7,795
13년 전 조회 1,960
13년 전 조회 2,293
13년 전 조회 2,262
13년 전 조회 3,987