지식 창고

custom button 본문

프로그래밍/HTML, CSS

custom button

Lucky-John 2021. 9. 21. 18:12
< HTML >
<div class="buttonDiv">
     버튼입니다.
</div>
< Java Script >
<style>
    .buttonDiv {
          background-color:yellowgreen;
          color:white;
          width:120px;
          height:30px;
          text-align:center; 
          line-height:30px;
          border:2px solid blue;
          cursor:pointer;
          border-radius:30px
    }
</style>

'프로그래밍 > HTML, CSS' 카테고리의 다른 글

툴팁 사용 방법  (0) 2021.10.07
canvas prog graph draw  (0) 2021.09.28
유용한 팁  (0) 2021.09.15
크롬 WEB 디버깅 방법  (0) 2021.08.29
canvas tag에 draw한 이미지 png로 다운로드하기  (0) 2021.08.28
Comments