HTML 및 CSS를 사용하여 아이콘으로 놀라운 버튼을 만드는 방법
HTML로 요소의 구조를 만든 다음 처음부터 CSS로 모든 스타일과 효과를 단계별로 작성하는 전체 프런트 엔드 코딩 튜토리얼을 보여드리겠습니다!
마크업
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Create Buttons with Icons</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<button class="button">
<span class="button__text">Like it</span>
<span class="button__icon">
<ion-icon name="heart-outline"></ion-icon>
</span>
</button>
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
</body>
</html>
스타일링
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');
body {
display: grid;
height: 100vh;
place-items: center;
overflow: hidden;
background: #20374e;
}
.button {
display: flex;
height: 50px;
padding: 0;
background: #2980b9;
border: none;
outline: none;
border-radius: 5px;
overflow: hidden;
font-family: 'Roboto', sans-serif;
font-size: 16px;
font-weight: 500;
cursor: pointer;
box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
transition: all 160ms ease-in;
}
button:hover {
background: #008168;
}
button:active {
background: #006e58;
transform: scale(.95);
}
.button__text,
.button__icon {
display: flex;
align-items: center;
height: 100%;
padding: 0 24px;
color: rgb(226, 226, 226);
}
.button__icon {
font-size: 1.5em;
background: rgb(0, 0, 0, 0.08);
}
🛴 더 많은 정보를 원하시면 저를 팔로우하세요:
유튜브: https://bit.ly/3oBQbc0
페이스북: https://bit.ly/3cp2S5W
인스타그램[신규]: https://bit.ly/3Ihh2EB
Reference
이 문제에 관하여(HTML 및 CSS를 사용하여 아이콘으로 놀라운 버튼을 만드는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/robsonmuniz16/create-buttons-with-icons-using-html-css-2iin텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)