프로그래밍/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>
