COMING SOON 🚀

컬러 단추 테두리

· 8년 전 · 1880

컬러 단추 테두리


91308e91ff090fb4abed793c1e3856ce_1504623922_2364.png
 


이 border속성을 사용하여 버튼에 색상 테두리를 추가 하십시오 .


.button1 {

    background-color: white;

    color: black;

    border: 2px solid #4CAF50; /* Green */

}



<!DOCTYPE html>

<html>

<head>

<style>

.button {

    background-color: #4CAF50; /* Green */

    border: none;

    color: white;

    padding: 15px 32px;

    text-align: center;

    text-decoration: none;

    display: inline-block;

    font-size: 16px;

    margin: 4px 2px;

    cursor: pointer;

}


.button1 {

    background-color: white; 

    color: black; 

    border: 2px solid #4CAF50;

}


.button2 {

    background-color: white; 

    color: black; 

    border: 2px solid #008CBA;

}


.button3 {

    background-color: white; 

    color: black; 

    border: 2px solid #f44336;

}


.button4 {

    background-color: white;

    color: black;

    border: 2px solid #e7e7e7;

}


.button5 {

    background-color: white;

    color: black;

    border: 2px solid #555555;

}

</style>

</head>

<body>


<h2>Colored Button Borders</h2>

<p>Use the border property to add a border to the button:</p>


<button class="button button1">Green</button>

<button class="button button2">Blue</button>

<button class="button button3">Red</button>

<button class="button button4">Gray</button>

<button class="button button5">Black</button>


</body>

</html>


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

퍼블리셔팁

퍼블리싱과 관련된 유용한 정보를 공유하세요. 질문은 상단의 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
CSS 8년 전 조회 1,913
CSS 8년 전 조회 2,230
CSS 8년 전 조회 2,103
CSS 8년 전 조회 1,911
CSS 8년 전 조회 1,774
CSS 8년 전 조회 1,820
CSS 8년 전 조회 2,229
CSS 8년 전 조회 1,815
CSS 8년 전 조회 2,055
CSS 8년 전 조회 1,869
CSS 8년 전 조회 1,724
CSS 8년 전 조회 2,085
CSS 8년 전 조회 1,676
CSS 8년 전 조회 1,792
CSS 8년 전 조회 1,881
CSS 8년 전 조회 1,891
CSS 8년 전 조회 1,698
CSS 8년 전 조회 4,392
CSS 8년 전 조회 2,312
CSS 8년 전 조회 2,711
CSS 8년 전 조회 2,239
CSS 8년 전 조회 2,177
CSS 8년 전 조회 2,050
CSS 8년 전 조회 2,323
CSS 8년 전 조회 2,085
CSS 8년 전 조회 2,224
CSS 8년 전 조회 2,621
CSS 8년 전 조회 1,941
CSS 8년 전 조회 2,544
CSS 8년 전 조회 1,970