월루를 꿈꾸는 대학생

[Spring Boot] static 디렉토리 본문

Programing/Spring Boot

[Spring Boot] static 디렉토리

하즈시 2023. 1. 1. 21:35
728x90

resource 폴더의 하위 static에 스타일 시트 파일을 저장

 

/*텍스트를 100퍼로 화면 체우고 */
textarea {
    width:100%;
}
/*답변 버튼을 위에서 10정도 띄움*/
input[type=submit] {
    margin-top:10px;
}

 

html에 head 태그 안에 넣어두기 

static이 스타일시트의 루트폴더 

<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <!--템플릿이랑 스타일 시트 연동 -->
    <link rel="stylesheet" type="text/css" th:href="@{/style.css}">
   
</head>

 

출처

https://wikidocs.net/161396

728x90

'Programing > Spring Boot' 카테고리의 다른 글

[SpringBoot 입문] 환경세팅  (0) 2023.01.07
[Spring Boot] 템플릿 상속  (0) 2023.01.01
[Spring Boot] 서비스  (0) 2023.01.01
[Spring Boot] Root URL  (0) 2023.01.01
[Springboot] @RequireArgsConstructor & Model  (0) 2023.01.01