Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS를 사용하여 테두리가 있는 링크 버튼 만들기

<시간/>

테두리가 있는 링크 버튼을 만들려면 다음 코드를 실행해 보십시오. -

예시

<!DOCTYPE html>
<html>
   <head>
      <style>
         a:link, a:visited {
            background-color: white;
            color: black;
            border: 1px solid blue;
            padding: 30px 30px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
         }
         a:hover, a:active {
            background-color: red;
            color: white;
         }
      </style>
   </head>
   <body>
      <a href = "demo.html" target = "_blank">Demo Link</a>
   </body>
</html>