값은 가져와지는데 style 이 안먹혀있어요ㅠㅠ
본문
게시판글들은 가져와 지는데 style 이 안먹혀있어요ㅠㅠ
이럴땐 어떻게 해야하나요
<?php
include_once('./_common.php');
include_once(G5_LIB_PATH.'/latest.lib.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>testPage</title>
<style>
* {
margin:0;
padding: 0;
}
.wrap {
width: 100vw;
height: 100vh;
}
.head, .foot {
width: 100%;
height: 10%;
background-color: #888888;
}
.gnboard {
width: 100%;
}
</style>
</head>
<body>
<div class="wrap">
<div class="head"></div>
<div class="gnboard">
<h1>게시판</h1>
<hr>
<!-- </?php echo 'hello' ?> -->
<?php echo latest('basic','notice',10,25);?>
</div>
<div class="foot"></div>
</div>
</body>
</html>
답변 2
<?php
include_once('./_common.php');
include_once(G5_PATH.'/head.sub.php');
include_once(G5_LIB_PATH.'/latest.lib.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>testPage</title>
<style>
* {
margin:0;
padding: 0;
}
.wrap {
width: 100vw;
height: 100vh;
}
.head, .foot {
width: 100%;
height: 10%;
background-color: #888888;
}
.gnboard {
width: 100%;
}
</style>
</head>
<body>
<div class="wrap">
<div class="head"></div>
<div class="gnboard">
<h1>게시판</h1>
<hr>
<!-- </?php echo 'hello' ?> -->
<?php echo latest('basic','notice',10,25);?>
</div>
<div class="foot"></div>
</div>
</body>
</html>
<?php
include_once(G5_PATH.'/tail.sub.php');
아래 경우 중 하나일 듯 싶네요.
그누 기본 CSS가 안 불러와 진 경우
ID 선택자 미지정으로 다른 선택자 영향을 받은 경우
답변을 작성하시기 전에 로그인 해주세요.