본문 바로가기
HTML CSS

페이지 최우측 하단 copyright 표시

by sj0020 2021. 7. 8.

바디 내부에 footer 내에 div를 넣어주고

<footer class="footer-basic-centered">
   
    <div class="RRIGHT">
      <p class="footer-company-name">COPYRIGHT ⓒ RRIGHT</p>
    </div>


  </footer>

 

head 태그 내 스타일 안에 아래외 같이 넣어줌. class 이름을 똑같이 해준다

<style media="screen">
      .RRIGHT{
      /* position:fixed; */
      position: absolute;
      right:30px;
      /* left:500px; */
      bottom:0px;
      /* height:60px; */
      /* width:100%; */
      /* background:grey; */
      color: black; }
  </style>

'HTML CSS' 카테고리의 다른 글

header, body  (0) 2021.08.14
span tag 공백  (0) 2021.08.14
input text box 투명하게 만드는 방법, 박스 테두리 없애기  (0) 2021.07.29
text box 에 이미 입력되어있는 text..  (0) 2021.07.06
CSS 압축해제  (0) 2021.07.01