묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
홈페이지로 만들때 주소노출을 막기위해 프레임을 이용할때 css가 적용이 안되어 나옵니다.
2010.12.29 18:50
주소노출을 막기위해
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=euc-kr">
<title>홈페이지 방문을 환영합니다.</title>
</head>
<frameset rows="0, 1*" border="0">
<frame>
<frame scrolling="yes" marginwidth="0" marginheight="0" src="/zbxe/">
</frameset>
</html>
<head>
<meta http-equiv="content-type" content="text/html; charset=euc-kr">
<title>홈페이지 방문을 환영합니다.</title>
</head>
<frameset rows="0, 1*" border="0">
<frame>
<frame scrolling="yes" marginwidth="0" marginheight="0" src="/zbxe/">
</frameset>
</html>
이런방법으로 index.html을작성하여 제로보드설치된 주소로 연결하였습니다.
그런데 주소/zbxe 를 직접치면 css의 폰트와 사이즈가 적용되어나오는데
주소만 쳐서 접속하면 css의 폰트와 사이즈가 적용 되지 않아 큼직하게나옵니다.
유관으로 보았을때는 폰트와 사이즈만 적용안되는것 같은데 ..어떤문제점인지 도움부탁드립니다~~