값은 가져와지는데 style 이 안먹혀있어요ㅠㅠ 채택완료

게시판글들은 가져와 지는데 style 이 안먹혀있어요ㅠㅠ

이럴땐 어떻게 해야하나요

 

2039953822_1656137210.7756.png

 

 

Copy
<?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개

채택된 답변
+20 포인트

Copy
<?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');
로그인 후 평가할 수 있습니다

답변에 대한 댓글 1개

오오 감사합니다! css 적용이 됐어요! 다른 부분도 해봐야겠어요!

댓글을 작성하려면 로그인이 필요합니다.

아래 경우 중 하나일 듯 싶네요.

 

그누 기본 CSS가 안 불러와 진 경우

ID 선택자 미지정으로 다른 선택자 영향을 받은 경우

 

로그인 후 평가할 수 있습니다

답변에 대한 댓글 1개

감사합니다! 좀 더 찾아봐야겠네요ㅠ,ㅠ

댓글을 작성하려면 로그인이 필요합니다.

답변을 작성하려면 로그인이 필요합니다.

로그인
🐛 버그신고