관리자: 리디자인 5, gnb 작업 중

This commit is contained in:
whitedot
2013-02-13 18:33:28 +09:00
parent ab12034c69
commit e65f29f7a9
2 changed files with 23 additions and 17 deletions

View File

@ -1,14 +1,25 @@
<!doctype html>
<html lang="ko">
<head>
<title>ie6 테스트</title>
<meta charset="utf-8">
<style>
a {display:block;position:relative;margin:100px;width:50px;height:50px;background:#ddd}
a span {position:absolute;top:0;left:0;width:50px;height:50px;background:#000}
</style>
<title>1</title>
</head>
<body>
<a href="#"><span></span>i can see your halo</a>
</body>
</html>
<?php
$str = "내용물";
if (isset($_GET['width'])) {
echo $str;
echo "<noscript>".$str."</noscript>";
} else {
echo "<script>\n";
echo "location.href=\"${_SERVER['SCRIPT_NAME']}?${_SERVER['QUERY_STRING']}"
. "width=\" + screen.width;\n";
echo "</script>\n";
echo "<noscript>";
echo $str;
echo "</noscript>";
exit();
}
?>