frame 을 div 로 대체 가능한지???
Posted: 2005 03 10 21:25 58
이곳의 Cross Browsing 가이드를 보니 HTML 4.01 에서는 frame 을 추천하지 않으며
div 로 대체가 가능하다고 되어있는데요, 정말 가능한가요??
div 로 대체가 가능하다고 되어있는데요, 정말 가능한가요??
Firefox, Thunderbird 사용자 및 Mozilla 활동가 모임
http://3.34.94.169/
frame가 아니라 iframe가 아닌지요?지나가는... wrote:이곳의 Cross Browsing 가이드를 보니 HTML 4.01 에서는 frame 을 추천하지 않으며
div 로 대체가 가능하다고 되어있는데요, 정말 가능한가요??
Code: Select all
/* CSS Document */
body{
padding :0;
margin :0;
background-image: url(images/bg.gif);
background-repeat: repeat-x;
}
#content{
position : fixed /*absolute*/ ;
top : 150px;
left : 200px;
/*position : absolute*/
padding-top : 10px;
padding-bottom : 10px;
padding-left : 10px;
padding-right : 10px;
overflow : auto;
/*clip : rect(20px, 20px, 20px, 20px);*/
}
#content h1 {
font-family: "Trebuchet MS", Georgia, "Times New Roman", Times, serif;
font-size: 120%;
font-weight: normal;
color: #000000;
background-color : transparent;
}
#content h2 {
font-family: "Trebuchet MS", Georgia, "Times New Roman", Times, serif;
font-size: 100%;
font-weight: bold;
color: #000000;
background-color : transparent;
}
#content p{
font-family: "Trebuchet MS", Georgia, "Times New Roman", Times, serif;
font-size: 80%;
font-weight: normal;
color: #000000;
background-color : transparent;
line-height : 140%;
}
#logo{
position : fixed /*absolute*/ ;
top : 30px;
left : 30px;
z-index : 50;
}
#script{
position : fixed /*absolute*/ ;
top : 12px;
right : 0;
text-align : right;
}
#navigation{
position : fixed /*absolute*/ ;
overflow : auto;
top : 190px;
left : 60px;
width : 140px;
}
#navigation a{
font-family: "Trebuchet MS", Georgia, "Times New Roman", Times, serif;
color : #00f;
background-color: transparent;
}
Code: Select all
position : fixed;
http://www.doxdesk.com/software/js/fixed.html지나가는... wrote: 그런데 문제가 있는게, 컨텐츠가 보이는 부분이 영역 전체를 차지하지 않는다는 것과
IE 에서는 제대로 안된다는 것입니다.
IE 에서 안되는 것은를 IE 가 지원하지 않아서 인 것 같은데요, 뭔가 방법이 없을까요???Code: Select all
position : fixed;