HTML 및 CSS를 사용한 프로필 ID 카드 디자인
5441 단어 programmingcsswebdevhtml
프로필 ID 카드 디자인을 위한 기본 HTML 구조부터 시작하겠습니다.
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>card</title>
<link rel="stylesheet" href="./Profile-card.css" />
<script src="https://kit.fontawesome.com/66aa7c98b3.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="card">
<div class="img-bx">
<img src="https://i.postimg.cc/dQ7zWbS5/img-4.jpg" alt="img" />
</div>
<div class="content">
<div class="detail">
<h2>Emilia Roy<br /><span>Senior Designer</span></h2>
<ul class="sci">
<li>
<a href="#"><i class="fab fa-facebook-f"></i></a>
</li>
<li>
<a href="#"><i class="fab fa-twitter"></i></a>
</li>
<li>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
</li>
<li>
<a href="#"><i class="fab fa-instagram"></i></a>
</li>
</ul>
</div>
</div>
</div>
</body>
</html>
프로필 ID 카드 디자인을 위한 모든 HTML 코드가 있습니다. 이제 CSS 없이 출력을 볼 수 있으며 프로필 ID 카드 디자인에 대한 CSS를 작성합니다.
산출
CSS 코드
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Times New Roman', Times, serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: linear-gradient(#03a9f4, #03a9f4 45%, #fff 45%, #fff 100%);
}
.card {
position: relative;
width: 300px;
height: 400px;
background: #fff;
border-radius: 10px;
background: rgba(255, 255, 255, 0.1);
border-top: 1px solid rgba(255, 255, 255, 0.5);
backdrop-filter: blur(15px);
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}
.img-bx {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 10px;
overflow: hidden;
transform: translateY(30px) scale(0.5);
transform-origin: top;
}
.img-bx img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.content {
position: absolute;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: flex-end;
padding-bottom: 30px;
}
.content .detail {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
}
.content .detail h2 {
color: #444;
font-size: 1.6em;
font-weight: bolder;
}
.content .detail h2 span {
font-size: 0.7em;
color: #03a9f4;
font-weight: bold;
}
.sci {
position: relative;
display: flex;
margin-top: 5px;
}
.sci li {
list-style: none;
margin: 4px;
}
.sci li a {
width: 45px;
height: 45px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
background: transparent;
font-size: 1.5em;
color: #444;
text-decoration: none;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
transition: 0.5s;
}
.sci li a:hover {
background: #03a9f4;
color: #fff;
}
CSS 섹션을 완료했습니다. 여기에 최종 업데이트된 출력 CSS가 있습니다.
최종 출력
CSS 섹션을 완료했습니다. 다음은 CSS로 업데이트된 출력입니다. 프로필 ID 카드 디자인이 마음에 드셨기를 바랍니다. 출력 프로젝트 스크린샷을 볼 수 있습니다. 다른 블로그를 참조하고 프런트 엔드 개발에 대한 지식을 얻으십시오.
고맙습니다
이 게시물은 간단한 HTML 및 CSS를 사용하여 프로필 ID 카드 디자인을 만드는 방법을 알려줍니다. 저희가 실수를 했거나 혼동을 드린 경우 댓글을 달아 답장을 보내거나 쉽게 배울 수 있도록 도와주세요.
작성자 – Random/Anki를 사용한 코드
일부 관련 주제 -
page-flip-animation-css-page-flip-using-html-css
hidden-search-bar-hidden-search-bar-html-css-javascript
icon-hover-effect-using-css-social-media-share-icon-animation
login-and-sign-up-form-using-only-html-css-only
Reference
이 문제에 관하여(HTML 및 CSS를 사용한 프로필 ID 카드 디자인), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/codingtitan6/profile-id-card-design-using-html-css-3edj텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)